Home
last modified time | relevance | path

Searched defs:alg (Results 51 - 75 of 263) sorted by relevance

1234567891011

/third_party/mbedtls/programs/psa/
H A Dcrypto_examples.c165 const psa_algorithm_t alg = PSA_ALG_CBC_NO_PADDING; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local
215 const psa_algorithm_t alg = PSA_ALG_CBC_PKCS7; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local
96 cipher_encrypt(psa_key_id_t key, psa_algorithm_t alg, uint8_t *iv, size_t iv_size, const uint8_t *input, size_t input_size, size_t part_size, uint8_t *output, size_t output_size, size_t *output_len) cipher_encrypt() argument
127 cipher_decrypt(psa_key_id_t key, psa_algorithm_t alg, const uint8_t *iv, size_t iv_size, const uint8_t *input, size_t input_size, size_t part_size, uint8_t *output, size_t output_size, size_t *output_len) cipher_decrypt() argument
262 const psa_algorithm_t alg = PSA_ALG_CTR; cipher_example_encrypt_decrypt_aes_ctr_multi() local
[all...]
/third_party/mbedtls/library/
H A Dcipher_wrap.h162 psa_algorithm_t alg; member
H A Dssl_cookie.c107 psa_algorithm_t alg; in mbedtls_ssl_cookie_setup() local
H A Dpsa_crypto_mac.c202 mac_init( mbedtls_psa_mac_operation_t *operation, psa_algorithm_t alg) mac_init() argument
271 psa_mac_setup(mbedtls_psa_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_mac_setup() argument
319 mbedtls_psa_mac_sign_setup( mbedtls_psa_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_psa_mac_sign_setup() argument
330 mbedtls_psa_mac_verify_setup( mbedtls_psa_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_psa_mac_verify_setup() argument
455 mbedtls_psa_mac_compute( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *mac, size_t mac_size, size_t *mac_length) mbedtls_psa_mac_compute() argument
[all...]
/third_party/mbedtls/tests/src/drivers/
H A Dtest_driver_cipher.c30 mbedtls_test_transparent_cipher_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *iv, size_t iv_length, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_cipher_encrypt() argument
83 mbedtls_test_transparent_cipher_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_cipher_decrypt() argument
130 mbedtls_test_transparent_cipher_encrypt_setup( mbedtls_transparent_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_transparent_cipher_encrypt_setup() argument
162 mbedtls_test_transparent_cipher_decrypt_setup( mbedtls_transparent_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_transparent_cipher_decrypt_setup() argument
316 mbedtls_test_opaque_cipher_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *iv, size_t iv_length, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_cipher_encrypt() argument
338 mbedtls_test_opaque_cipher_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_cipher_decrypt() argument
357 mbedtls_test_opaque_cipher_encrypt_setup( mbedtls_opaque_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_opaque_cipher_encrypt_setup() argument
371 mbedtls_test_opaque_cipher_decrypt_setup( mbedtls_opaque_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_opaque_cipher_decrypt_setup() argument
[all...]
H A Dtest_driver_aead.c25 mbedtls_test_transparent_aead_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *plaintext, size_t plaintext_length, uint8_t *ciphertext, size_t ciphertext_size, size_t *ciphertext_length) mbedtls_test_transparent_aead_encrypt() argument
81 mbedtls_test_transparent_aead_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *ciphertext, size_t ciphertext_length, uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length) mbedtls_test_transparent_aead_decrypt() argument
137 mbedtls_test_transparent_aead_encrypt_setup( mbedtls_transparent_test_driver_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_transparent_aead_encrypt_setup() argument
174 mbedtls_test_transparent_aead_decrypt_setup( mbedtls_transparent_test_driver_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_transparent_aead_decrypt_setup() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_dh.c83 X509_ALGOR *alg, *kekalg = NULL; in dh_cms_set_shared_info() local
169 X509_ALGOR *alg; in dh_cms_decrypt() local
19 dh_cms_set_peerkey(EVP_PKEY_CTX *pctx, X509_ALGOR *alg, ASN1_BIT_STRING *pubkey) dh_cms_set_peerkey() argument
[all...]
H A Dcms_rsa.c19 static RSA_OAEP_PARAMS *rsa_oaep_decode(const X509_ALGOR *alg) in rsa_oaep_decode() argument
120 X509_ALGOR *alg; in rsa_cms_encrypt() local
199 X509_ALGOR *alg; in rsa_cms_sign() local
245 X509_ALGOR *alg; rsa_cms_verify() local
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Ddecode_epki2pki.c69 const X509_ALGOR *alg = NULL; in epki2pki_decode() local
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dmac_meth.c201 void *alg; in EVP_MAC_gettable_ctx_params() local
211 void *alg; in EVP_MAC_settable_ctx_params() local
221 void *alg; in EVP_MAC_CTX_gettable_params() local
231 void *alg; in EVP_MAC_CTX_settable_params() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ffc/
H A Dffc_params.c128 int ossl_ffc_set_digest(FFC_PARAMS *params, const char *alg, const char *props) in ossl_ffc_set_digest() argument
/third_party/node/deps/openssl/openssl/crypto/pkcs12/
H A Dp12_npas.c174 static int alg_get(const X509_ALGOR *alg, int *pnid, int *piter, in alg_get() argument
/third_party/node/deps/openssl/openssl/crypto/ess/
H A Dess_lib.c144 X509_ALGOR *alg = NULL; in ESS_CERT_ID_V2_new_init() local
/third_party/node/deps/openssl/openssl/crypto/cmp/
H A Dcmp_protect.c188 static int set_pbmac_algor(const OSSL_CMP_CTX *ctx, X509_ALGOR **alg) in set_pbmac_algor() argument
226 static int set_sig_algor(const OSSL_CMP_CTX *ctx, X509_ALGOR **alg) in set_sig_algor() argument
/third_party/openssl/crypto/cms/
H A Dcms_dh.c83 X509_ALGOR *alg, *kekalg = NULL; in dh_cms_set_shared_info() local
169 X509_ALGOR *alg; in dh_cms_decrypt() local
19 dh_cms_set_peerkey(EVP_PKEY_CTX *pctx, X509_ALGOR *alg, ASN1_BIT_STRING *pubkey) dh_cms_set_peerkey() argument
[all...]
H A Dcms_rsa.c18 static RSA_OAEP_PARAMS *rsa_oaep_decode(const X509_ALGOR *alg) in rsa_oaep_decode() argument
116 X509_ALGOR *alg; in rsa_cms_encrypt() local
193 X509_ALGOR *alg; in rsa_cms_sign() local
229 X509_ALGOR *alg; rsa_cms_verify() local
[all...]
/third_party/openssl/crypto/ess/
H A Dess_lib.c144 X509_ALGOR *alg = NULL; in ESS_CERT_ID_V2_new_init() local
/third_party/openssl/crypto/cmp/
H A Dcmp_protect.c188 static int set_pbmac_algor(const OSSL_CMP_CTX *ctx, X509_ALGOR **alg) in set_pbmac_algor() argument
226 static int set_sig_algor(const OSSL_CMP_CTX *ctx, X509_ALGOR **alg) in set_sig_algor() argument
/third_party/openssl/crypto/evp/
H A Dmac_meth.c201 void *alg; in EVP_MAC_gettable_ctx_params() local
211 void *alg; in EVP_MAC_settable_ctx_params() local
221 void *alg; in EVP_MAC_CTX_gettable_params() local
231 void *alg; in EVP_MAC_CTX_settable_params() local
[all...]
/third_party/openssl/crypto/ffc/
H A Dffc_params.c128 int ossl_ffc_set_digest(FFC_PARAMS *params, const char *alg, const char *props) in ossl_ffc_set_digest() argument
/third_party/openssl/crypto/pkcs12/
H A Dp12_npas.c174 static int alg_get(const X509_ALGOR *alg, int *pnid, int *piter, in alg_get() argument
/third_party/openssl/providers/implementations/encode_decode/
H A Ddecode_epki2pki.c69 const X509_ALGOR *alg = NULL; in epki2pki_decode() local
/third_party/libwebsockets/lib/cose/
H A Dprivate-lib-cose.h70 cose_param_t alg; member
107 lws_cose_sig_alg_t *alg; member
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jose.h85 const char *alg; /* the JWA enc alg name, eg "ES512" */ member
125 const struct lws_jose_jwe_alg *alg; member
[all...]
/third_party/mbedtls/3rdparty/p256-m/
H A Dp256-m_driver_entrypoints.c168 p256_transparent_key_agreement( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *peer_key, size_t peer_key_length, uint8_t *shared_secret, size_t shared_secret_size, size_t *shared_secret_length) p256_transparent_key_agreement() argument
203 p256_transparent_sign_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) p256_transparent_sign_hash() argument
261 p256_transparent_verify_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) p256_transparent_verify_hash() argument

Completed in 12 milliseconds

1234567891011