Searched defs:aes_ctx (Results 1 - 3 of 3) sorted by relevance

/external/openssh/
H A Dcipher-ctr.c39 AES_KEY aes_ctx; member in struct:ssh_aes_ctr_ctx
73 AES_encrypt(c->aes_counter, buf, &c->aes_ctx);
94 &c->aes_ctx);
/external/srtp/crypto/ae_xfm/
H A Dxfm.c30 aes_cbc_ctx_t aes_ctx; local
66 status = aes_cbc_context_init(&aes_ctx, key, direction_encrypt);
72 status = aes_cbc_set_iv(&aes_ctx, iv);
75 status = aes_cbc_nist_encrypt(&aes_ctx, opaque, opaque_len);
104 aes_cbc_ctx_t aes_ctx; local
142 status = aes_cbc_context_init(&aes_ctx, key, direction_decrypt);
148 status = aes_cbc_set_iv(&aes_ctx, iv);
151 status = aes_cbc_nist_decrypt(&aes_ctx, opaque, opaque_len);
190 aes_cbc_ctx_t aes_ctx; local
231 status = aes_cbc_context_init(&aes_ctx, ke
301 aes_cbc_ctx_t aes_ctx; local
[all...]
/external/boringssl/src/crypto/cipher/
H A De_aes.c1540 struct aead_aes_ctr_hmac_sha256_ctx *aes_ctx; local
1566 aes_ctx = OPENSSL_malloc(sizeof(struct aead_aes_ctr_hmac_sha256_ctx));
1567 if (aes_ctx == NULL) {
1573 aes_ctx->ctr =
1574 aes_ctr_set_key(&aes_ctx->ks.ks, NULL, &aes_ctx->block, key, aes_key_len);
1575 aes_ctx->tag_len = tag_len;
1576 hmac_init(&aes_ctx->inner_init_state, &aes_ctx->outer_init_state,
1579 ctx->aead_state = aes_ctx;
1585 struct aead_aes_ctr_hmac_sha256_ctx *aes_ctx = ctx->aead_state; local
1634 aead_aes_ctr_hmac_sha256_crypt( const struct aead_aes_ctr_hmac_sha256_ctx *aes_ctx, uint8_t *out, const uint8_t *in, size_t len, const uint8_t *nonce) argument
1663 const struct aead_aes_ctr_hmac_sha256_ctx *aes_ctx = ctx->aead_state; local
1702 const struct aead_aes_ctr_hmac_sha256_ctx *aes_ctx = ctx->aead_state; local
[all...]

Completed in 365 milliseconds