Home
last modified time | relevance | path

Searched refs:ac_ctx (Results 1 – 1 of 1) sorted by relevance

/netbsd/src/crypto/external/bsd/openssh/dist/
Dcipher.c94 struct aesctr_ctx ac_ctx; /* XXX union with evp? */ member
311 aesctr_keysetup(&cc->ac_ctx, key, 8 * keylen, 8 * ivlen); in cipher_init()
312 aesctr_ivsetup(&cc->ac_ctx, iv); in cipher_init()
391 aesctr_encrypt_bytes(&cc->ac_ctx, src + aadlen, in cipher_crypt()
460 explicit_bzero(&cc->ac_ctx, sizeof(cc->ac_ctx)); in cipher_free()
482 if (len != sizeof(cc->ac_ctx.ctr)) in cipher_get_keyiv()
484 memcpy(iv, cc->ac_ctx.ctr, len); in cipher_get_keyiv()