/optee_os-3.20.0/core/lib/libtomcrypt/ |
A D | cmac.c | 86 static TEE_Result crypto_common_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret, in crypto_common_cmac_alloc_ctx() argument 92 if (!ctx_ret) in crypto_common_cmac_alloc_ctx() 104 *ctx_ret = &ctx->ctx; in crypto_common_cmac_alloc_ctx() 109 TEE_Result crypto_aes_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret) in crypto_aes_cmac_alloc_ctx() argument 111 return crypto_common_cmac_alloc_ctx(ctx_ret, "aes"); in crypto_aes_cmac_alloc_ctx() 114 TEE_Result crypto_des3_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret) in crypto_des3_cmac_alloc_ctx() argument 116 return crypto_common_cmac_alloc_ctx(ctx_ret, "3des"); in crypto_des3_cmac_alloc_ctx()
|
A D | ctr.c | 96 TEE_Result crypto_aes_ctr_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_aes_ctr_alloc_ctx() argument 110 *ctx_ret = &c->ctx; in crypto_aes_ctr_alloc_ctx()
|
A D | hmac.c | 85 static TEE_Result ltc_hmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret, in ltc_hmac_alloc_ctx() argument 99 *ctx_ret = &ctx->ctx; in ltc_hmac_alloc_ctx()
|
A D | cbc.c | 103 static TEE_Result ltc_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret, in ltc_cbc_alloc_ctx() argument 118 *ctx_ret = &c->ctx; in ltc_cbc_alloc_ctx()
|
A D | ecb.c | 101 static TEE_Result ltc_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret, in ltc_ecb_alloc_ctx() argument 116 *ctx_ret = &c->ctx; in ltc_ecb_alloc_ctx()
|
A D | xts.c | 113 TEE_Result crypto_aes_xts_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_aes_xts_alloc_ctx() argument 127 *ctx_ret = &c->ctx; in crypto_aes_xts_alloc_ctx()
|
A D | hash.c | 109 static TEE_Result ltc_hash_alloc_ctx(struct crypto_hash_ctx **ctx_ret, in ltc_hash_alloc_ctx() argument 124 *ctx_ret = &ctx->ctx; in ltc_hash_alloc_ctx()
|
A D | ccm.c | 28 TEE_Result crypto_aes_ccm_alloc_ctx(struct crypto_authenc_ctx **ctx_ret) in crypto_aes_ccm_alloc_ctx() argument 36 *ctx_ret = &ctx->aectx; in crypto_aes_ccm_alloc_ctx()
|
A D | gcm.c | 32 TEE_Result crypto_aes_gcm_alloc_ctx(struct crypto_authenc_ctx **ctx_ret) in crypto_aes_gcm_alloc_ctx() argument 40 *ctx_ret = &ctx->aectx; in crypto_aes_gcm_alloc_ctx()
|
/optee_os-3.20.0/lib/libmbedtls/core/ |
A D | cmac.c | 127 static TEE_Result crypto_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret, in crypto_cmac_alloc_ctx() argument 169 *ctx_ret = &c->mac_ctx; in crypto_cmac_alloc_ctx() 174 TEE_Result crypto_des3_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret) in crypto_des3_cmac_alloc_ctx() argument 176 return crypto_cmac_alloc_ctx(ctx_ret, MBEDTLS_CIPHER_ID_3DES, 192); in crypto_des3_cmac_alloc_ctx() 179 TEE_Result crypto_aes_cmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret) in crypto_aes_cmac_alloc_ctx() argument 181 return crypto_cmac_alloc_ctx(ctx_ret, MBEDTLS_CIPHER_ID_AES, 128); in crypto_aes_cmac_alloc_ctx()
|
A D | des_ecb.c | 105 TEE_Result crypto_des_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_des_ecb_alloc_ctx() argument 114 *ctx_ret = &c->ctx; in crypto_des_ecb_alloc_ctx()
|
A D | des3_ecb.c | 114 TEE_Result crypto_des3_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_des3_ecb_alloc_ctx() argument 123 *ctx_ret = &c->ctx; in crypto_des3_ecb_alloc_ctx()
|
A D | des_cbc.c | 109 TEE_Result crypto_des_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_des_cbc_alloc_ctx() argument 118 *ctx_ret = &c->ctx; in crypto_des_cbc_alloc_ctx()
|
A D | aes_ecb.c | 114 TEE_Result crypto_aes_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_aes_ecb_alloc_ctx() argument 123 *ctx_ret = &c->ctx; in crypto_aes_ecb_alloc_ctx()
|
A D | des3_cbc.c | 116 TEE_Result crypto_des3_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_des3_cbc_alloc_ctx() argument 125 *ctx_ret = &c->ctx; in crypto_des3_cbc_alloc_ctx()
|
A D | aes_cbc.c | 112 TEE_Result crypto_aes_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_aes_cbc_alloc_ctx() argument 121 *ctx_ret = &c->ctx; in crypto_aes_cbc_alloc_ctx()
|
A D | hmac.c | 105 static TEE_Result mbed_hmac_alloc_ctx(struct crypto_mac_ctx **ctx_ret, in mbed_hmac_alloc_ctx() argument 128 *ctx_ret = &c->mac_ctx; in mbed_hmac_alloc_ctx()
|
A D | aes_ctr.c | 107 TEE_Result crypto_aes_ctr_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_aes_ctr_alloc_ctx() argument 116 *ctx_ret = &c->ctx; in crypto_aes_ctr_alloc_ctx()
|
A D | hash.c | 110 static TEE_Result mbed_hash_alloc_ctx(struct crypto_hash_ctx **ctx_ret, in mbed_hash_alloc_ctx() argument 133 *ctx_ret = &hc->hash_ctx; in mbed_hash_alloc_ctx()
|
/optee_os-3.20.0/core/crypto/ |
A D | sm4-ecb.c | 90 TEE_Result crypto_sm4_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_sm4_ecb_alloc_ctx() argument 99 *ctx_ret = &c->ctx; in crypto_sm4_ecb_alloc_ctx()
|
A D | sm4-ctr.c | 92 TEE_Result crypto_sm4_ctr_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_sm4_ctr_alloc_ctx() argument 101 *ctx_ret = &c->ctx; in crypto_sm4_ctr_alloc_ctx()
|
A D | sm4-cbc.c | 95 TEE_Result crypto_sm4_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_sm4_cbc_alloc_ctx() argument 104 *ctx_ret = &c->ctx; in crypto_sm4_cbc_alloc_ctx()
|
A D | sm4-xts.c | 105 TEE_Result crypto_sm4_xts_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) in crypto_sm4_xts_alloc_ctx() argument 114 *ctx_ret = &c->ctx; in crypto_sm4_xts_alloc_ctx()
|
A D | cbc-mac.c | 188 static TEE_Result crypto_cbc_mac_alloc_ctx(struct crypto_mac_ctx **ctx_ret, in crypto_cbc_mac_alloc_ctx() argument 215 *ctx_ret = &ctx->ctx; in crypto_cbc_mac_alloc_ctx()
|
A D | aes-gcm.c | 436 TEE_Result crypto_aes_gcm_alloc_ctx(struct crypto_authenc_ctx **ctx_ret) in crypto_aes_gcm_alloc_ctx() argument 444 *ctx_ret = &ctx->aec; in crypto_aes_gcm_alloc_ctx()
|