├── .gitignore ├── LICENSE ├── README.md └── ara └── sec ├── crypto ├── additional.h ├── aead_decrypt_cryptoneed.h ├── aead_encrypt_cryptoneed.h ├── asymmetric_decrypt_cryptoneed.h ├── asymmetric_encrypt_cryptoneed.h ├── cipher.h ├── cipher_parameters.h ├── hash.h ├── hash_cryptoneed.h ├── hash_factory.h ├── key.h ├── key_derivation.h ├── key_derive_cryptoneed.h ├── key_exchange.h ├── key_exchange_cryptoneed.h ├── key_management.h ├── key_management_cryptoneed.h ├── keyed_primitive.h ├── mac_generate_cryptoneed.h ├── mac_verify_cryptoneed.h ├── pch.h ├── random.h ├── random_cryptoneed.h ├── signature_generate_cryptoneed.h ├── signature_verify_cryptoneed.h ├── signer.h ├── symmetric_decrypt_cryptoneed.h ├── symmetric_encrypt_cryptoneed.h └── verifier.h └── span.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/README.md -------------------------------------------------------------------------------- /ara/sec/crypto/additional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/additional.h -------------------------------------------------------------------------------- /ara/sec/crypto/aead_decrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/aead_decrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/aead_encrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/aead_encrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/asymmetric_decrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/asymmetric_decrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/asymmetric_encrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/asymmetric_encrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/cipher.h -------------------------------------------------------------------------------- /ara/sec/crypto/cipher_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/cipher_parameters.h -------------------------------------------------------------------------------- /ara/sec/crypto/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/hash.h -------------------------------------------------------------------------------- /ara/sec/crypto/hash_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/hash_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/hash_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/hash_factory.h -------------------------------------------------------------------------------- /ara/sec/crypto/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_derivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_derivation.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_derive_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_derive_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_exchange.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_exchange_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_exchange_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_management.h -------------------------------------------------------------------------------- /ara/sec/crypto/key_management_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/key_management_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/keyed_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/keyed_primitive.h -------------------------------------------------------------------------------- /ara/sec/crypto/mac_generate_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/mac_generate_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/mac_verify_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/mac_verify_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/pch.h -------------------------------------------------------------------------------- /ara/sec/crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/random.h -------------------------------------------------------------------------------- /ara/sec/crypto/random_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/random_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/signature_generate_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/signature_generate_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/signature_verify_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/signature_verify_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/signer.h -------------------------------------------------------------------------------- /ara/sec/crypto/symmetric_decrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/symmetric_decrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/symmetric_encrypt_cryptoneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/symmetric_encrypt_cryptoneed.h -------------------------------------------------------------------------------- /ara/sec/crypto/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/crypto/verifier.h -------------------------------------------------------------------------------- /ara/sec/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cflaviu/aa-crypto17-10/HEAD/ara/sec/span.h --------------------------------------------------------------------------------