Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
92 void des_t4_ede3_cbc_encrypt(const void *inp, void *out, size_t len,
94 void des_t4_ede3_cbc_decrypt(const void *inp, void *out, size_t len,
113 static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
118 (DES_cblock *)(out + i),
124 static int des_ede_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
128 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
134 out += EVP_MAXCHUNK;
137 DES_ede3_ofb64_encrypt(in, out, (long)inl,
145 static int des_ede_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
162 (*dat->stream.cbc) (in, out, inl, dat->ks.ks, ctx->iv);
167 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK,
172 out += EVP_MAXCHUNK;
175 DES_ede3_cbc_encrypt(in, out, (long)inl,
181 static int des_ede_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
185 DES_ede3_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
191 out += EVP_MAXCHUNK;
194 DES_ede3_cfb64_encrypt(in, out, (long)inl,
205 static int des_ede3_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
217 out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8)))
224 static int des_ede3_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
228 DES_ede3_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK,
234 out += EVP_MAXCHUNK;
237 DES_ede3_cfb_encrypt(in, out, 8, (long)inl,