Home | History | Annotate | Download | only in evp

Lines Matching refs:cipher_data

78 		DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i), ctx->cipher_data, ctx->encrypt);
87 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
94 DES_ofb64_encrypt(in, out, (long)inl, ctx->cipher_data,
104 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
111 DES_ncbc_encrypt(in, out, (long)inl, ctx->cipher_data,
121 DES_cfb64_encrypt(in,out, (long)EVP_MAXCHUNK, ctx->cipher_data,
128 DES_cfb64_encrypt(in, out, (long)inl, ctx->cipher_data,
148 DES_cfb_encrypt(c,d,1,1,ctx->cipher_data,(DES_cblock *)ctx->iv,
167 DES_cfb_encrypt(in,out,8,(long)EVP_MAXCHUNK,ctx->cipher_data,
174 DES_cfb_encrypt(in,out,8,(long)inl,ctx->cipher_data,
200 if(DES_set_key_checked(deskey,ctx->cipher_data) != 0)
203 DES_set_key_unchecked(deskey,ctx->cipher_data);