• Home
  • Raw
  • Download

Lines Matching refs:cipher

62 			ctx->cipher = EVP_aes_128_wrap();  in lws_genaes_create()
70 ctx->cipher = EVP_aes_128_cbc(); in lws_genaes_create()
74 ctx->cipher = EVP_aes_128_cfb128(); in lws_genaes_create()
79 ctx->cipher = EVP_aes_128_cfb8(); in lws_genaes_create()
84 ctx->cipher = EVP_aes_128_ctr(); in lws_genaes_create()
89 ctx->cipher = EVP_aes_128_ecb(); in lws_genaes_create()
94 ctx->cipher = EVP_aes_128_ofb(); in lws_genaes_create()
104 ctx->cipher = EVP_aes_128_gcm(); in lws_genaes_create()
117 ctx->cipher = EVP_aes_192_wrap(); in lws_genaes_create()
125 ctx->cipher = EVP_aes_192_cbc(); in lws_genaes_create()
129 ctx->cipher = EVP_aes_192_cfb128(); in lws_genaes_create()
134 ctx->cipher = EVP_aes_192_cfb8(); in lws_genaes_create()
139 ctx->cipher = EVP_aes_192_ctr(); in lws_genaes_create()
144 ctx->cipher = EVP_aes_192_ecb(); in lws_genaes_create()
149 ctx->cipher = EVP_aes_192_ofb(); in lws_genaes_create()
158 ctx->cipher = EVP_aes_192_gcm(); in lws_genaes_create()
171 ctx->cipher = EVP_aes_256_wrap(); in lws_genaes_create()
179 ctx->cipher = EVP_aes_256_cbc(); in lws_genaes_create()
183 ctx->cipher = EVP_aes_256_cfb128(); in lws_genaes_create()
188 ctx->cipher = EVP_aes_256_cfb8(); in lws_genaes_create()
193 ctx->cipher = EVP_aes_256_ctr(); in lws_genaes_create()
198 ctx->cipher = EVP_aes_256_ecb(); in lws_genaes_create()
203 ctx->cipher = EVP_aes_256_ofb(); in lws_genaes_create()
208 ctx->cipher = EVP_aes_128_xts(); in lws_genaes_create()
212 ctx->cipher = EVP_aes_256_gcm(); in lws_genaes_create()
223 ctx->cipher = EVP_aes_256_xts(); in lws_genaes_create()
239 n = EVP_EncryptInit_ex(ctx->ctx, ctx->cipher, ctx->engine, in lws_genaes_create()
244 n = EVP_DecryptInit_ex(ctx->ctx, ctx->cipher, ctx->engine, in lws_genaes_create()
251 ctx->cipher); in lws_genaes_create()
358 __func__, ctx->cipher); in lws_genaes_crypt()