Home | History | Annotate | Download | only in openssh

Lines Matching full:aes_ctr

131 	static EVP_CIPHER aes_ctr;
133 memset(&aes_ctr, 0, sizeof(EVP_CIPHER));
134 aes_ctr.nid = NID_undef;
135 aes_ctr.block_size = AES_BLOCK_SIZE;
136 aes_ctr.iv_len = AES_BLOCK_SIZE;
137 aes_ctr.key_len = 16;
138 aes_ctr.init = ssh_aes_ctr_init;
139 aes_ctr.cleanup = ssh_aes_ctr_cleanup;
140 aes_ctr.do_cipher = ssh_aes_ctr;
142 aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
145 return (&aes_ctr);