Home
last modified time | relevance | path

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

/openbsd/src/usr.bin/ssh/
Dcipher.c59 struct aesctr_ctx ac_ctx; /* XXX union with evp? */ member
276 aesctr_keysetup(&cc->ac_ctx, key, 8 * keylen, 8 * ivlen); in cipher_init()
277 aesctr_ivsetup(&cc->ac_ctx, iv); in cipher_init()
354 aesctr_encrypt_bytes(&cc->ac_ctx, src + aadlen, in cipher_crypt()
423 explicit_bzero(&cc->ac_ctx, sizeof(cc->ac_ctx)); in cipher_free()
445 if (len != sizeof(cc->ac_ctx.ctr)) in cipher_get_keyiv()
447 memcpy(iv, cc->ac_ctx.ctr, len); in cipher_get_keyiv()