Searched refs:aesctr_ctx (Results 1 – 3 of 3) sorted by relevance
/external/openssh/ |
D | cipher-aesctr.h | 25 typedef struct aesctr_ctx { struct 29 } aesctr_ctx; argument 31 void aesctr_keysetup(aesctr_ctx *x,const u8 *k,u32 kbits,u32 ivbits); 32 void aesctr_ivsetup(aesctr_ctx *x,const u8 *iv); 33 void aesctr_encrypt_bytes(aesctr_ctx *x,const u8 *m,u8 *c,u32 bytes);
|
D | cipher-aesctr.c | 57 aesctr_keysetup(aesctr_ctx *x,const u8 *k,u32 kbits,u32 ivbits) in aesctr_keysetup() 63 aesctr_ivsetup(aesctr_ctx *x,const u8 *iv) in aesctr_ivsetup() 69 aesctr_encrypt_bytes(aesctr_ctx *x,const u8 *m,u8 *c,u32 bytes) in aesctr_encrypt_bytes()
|
D | cipher.c | 65 struct aesctr_ctx ac_ctx; /* XXX union with evp? */
|