Searched refs:EVP_CipherInit_ex (Results 1 - 25 of 54) sorted by relevance

123

/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-evp.c47 EVP_CipherInit_ex(&key->ectx, c, NULL, kd->key->keyvalue.data, NULL, 1);
48 EVP_CipherInit_ex(&key->dctx, c, NULL, kd->key->keyvalue.data, NULL, 0);
80 EVP_CipherInit_ex(c, NULL, NULL, NULL, loiv, -1);
83 EVP_CipherInit_ex(c, NULL, NULL, NULL, ivec, -1);
114 EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1);
120 EVP_CipherInit_ex(c, NULL, NULL, NULL, ivec, -1);
122 EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1);
138 EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1);
164 EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1);
173 EVP_CipherInit_ex(
[all...]
H A Dcrypto-des-common.c83 EVP_CipherInit_ex(&ctx->ectx, NULL, NULL, NULL, (void *)ivec, -1);
111 EVP_CipherInit_ex(&ctx->dctx, NULL, NULL, NULL, (void *)ivec, -1);
H A Dcrypto-arcfour.c183 EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, k3_c.checksum.data, NULL, 1);
240 EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, k3_c.checksum.data, NULL, 0);
H A Dcrypto-des.c230 EVP_CipherInit_ex(c, NULL, NULL, NULL, (void *)&ivec, -1);
249 EVP_CipherInit_ex(c, NULL, NULL, NULL, (void *)&ivec, -1);
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Dvalidate.c231 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1)
232 errx(1, "%s: EVP_CipherInit_ex einit", t->name);
233 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1)
234 errx(1, "%s: EVP_CipherInit_ex dinit", t->name);
239 if (EVP_CipherInit_ex(&ectx, NULL, NULL, t->key, t->iv, 1) != 1)
240 errx(1, "%s: EVP_CipherInit_ex encrypt", t->name);
241 if (EVP_CipherInit_ex(&dctx, NULL, NULL, t->key, t->iv, 0) != 1)
242 errx(1, "%s: EVP_CipherInit_ex decrypt", t->name);
H A Dtest_cipher.c246 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1)
247 errx(1, "%s: %d EVP_CipherInit_ex einit", t->name, i);
248 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1)
249 errx(1, "%s: %d EVP_CipherInit_ex dinit", t->name, i);
254 if (EVP_CipherInit_ex(&ectx, NULL, NULL, t->key, t->iv, 1) != 1)
255 errx(1, "%s: %d EVP_CipherInit_ex encrypt", t->name, i);
256 if (EVP_CipherInit_ex(&dctx, NULL, NULL, t->key, t->iv, 0) != 1)
257 errx(1, "%s: %d EVP_CipherInit_ex decrypt", t->name, i);
H A Dexample_evp_cipher.c119 EVP_CipherInit_ex(&ctx, c, NULL, key, ivec, encryptp);
H A Devp.h58 #define EVP_CipherInit_ex hc_EVP_CipherInit_ex macro
301 int EVP_CipherInit_ex(EVP_CIPHER_CTX *,const EVP_CIPHER *, ENGINE *,
/macosx-10.10.1/OpenSSH-189/osslshim/tests/
H A Dtest_cipher.c272 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1) {
273 errx(1, "%s: %d EVP_CipherInit_ex einit", t->name, i);
275 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1) {
276 errx(1, "%s: %d EVP_CipherInit_ex dinit", t->name, i);
282 if (EVP_CipherInit_ex(&ectx, NULL, NULL, t->key, t->iv, 1) != 1) {
283 errx(1, "%s: %d EVP_CipherInit_ex encrypt", t->name, i);
285 if (EVP_CipherInit_ex(&dctx, NULL, NULL, t->key, t->iv, 0) != 1) {
286 errx(1, "%s: %d EVP_CipherInit_ex decrypt", t->name, i);
/macosx-10.10.1/OpenSSL098-52/src/demos/maurice/
H A Dexample3.c61 EVP_CipherInit_ex(&ectx, ALG, NULL, key, iv, operation);
/macosx-10.10.1/OpenSSL098-52/src/crypto/pkcs12/
H A Dp12_crpt.c126 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
/macosx-10.10.1/ruby-106/ruby/ext/openssl/
H A Dossl_cipher.c63 if (EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, -1) != 1)
124 if (EVP_CipherInit_ex(ctx, cipher, NULL, key, NULL, -1) != 1)
188 * Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, -1).
196 if (EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, -1) != 1)
239 if (EVP_CipherInit_ex(ctx, NULL, NULL, p_key, p_iv, mode) != 1) {
256 * Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, 1).
274 * Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, 0).
324 if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, -1) != 1)
447 if (EVP_CipherInit_ex(ctx, NULL, NULL, (unsigned char *)RSTRING_PTR(key), NULL, -1) != 1)
479 if (EVP_CipherInit_ex(ct
[all...]
H A Dopenssl_missing.h106 # define EVP_CipherInit_ex(ctx, type, impl, key, iv, enc) EVP_CipherInit((ctx), (type), (key), (iv), (enc)) macro
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/krb5/
H A Darcfour.c239 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, k6_data, NULL, 1);
314 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, (void *)k6_data, NULL, 0);
467 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, k6_data, NULL, 1);
486 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, k6_data, NULL, 1);
586 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, k6_data, NULL, 1);
634 EVP_CipherInit_ex(&rc4_key, EVP_rc4(), NULL, k6_data, NULL, 1);
H A Dunwrap.c110 EVP_CipherInit_ex(&des_ctx, EVP_des_cbc(), NULL, deskey, zero, 0);
152 EVP_CipherInit_ex(&des_ctx, EVP_des_cbc(), NULL, key->keyvalue.data, hash, 0);
/macosx-10.10.1/OpenSSL098-52/src/crypto/evp/
H A Devp_enc.c92 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc);
126 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
138 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
H A Dp5_crpt.c154 EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de);
H A Dp5_crpt2.c193 EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de);
245 EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);
H A De_rc2.c186 if(i > 0) EVP_CipherInit_ex(c, NULL, NULL, NULL, iv, -1);
H A Dbio_enc.c301 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL,
421 EVP_CipherInit_ex(&(ctx->cipher),c,NULL, k,i,e);
/macosx-10.10.1/OpenSSL098-52/src/crypto/cms/
H A Dcms_enc.c116 if (EVP_CipherInit_ex(ctx, ciph, NULL, NULL, NULL, enc) <= 0)
196 if (EVP_CipherInit_ex(ctx, NULL, NULL, ec->key, piv, enc) <= 0)
/macosx-10.10.1/OpenSSL098-52/src/fips/
H A Dfips_test_suite.c55 if (EVP_CipherInit_ex(&ctx, EVP_aes_128_ecb(),NULL, key, NULL, 1) <= 0)
58 if (EVP_CipherInit_ex(&ctx, EVP_aes_128_ecb(),NULL, key, NULL, 0) <= 0)
79 if (EVP_CipherInit_ex(&ctx, EVP_des_ede3_ecb(),NULL, key, NULL, 1) <= 0)
82 if (EVP_CipherInit_ex(&ctx, EVP_des_ede3_ecb(),NULL, key, NULL, 0) <= 0)
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dfips_test_suite.c55 if (EVP_CipherInit_ex(&ctx, EVP_aes_128_ecb(),NULL, key, NULL, 1) <= 0)
58 if (EVP_CipherInit_ex(&ctx, EVP_aes_128_ecb(),NULL, key, NULL, 0) <= 0)
79 if (EVP_CipherInit_ex(&ctx, EVP_des_ede3_ecb(),NULL, key, NULL, 1) <= 0)
82 if (EVP_CipherInit_ex(&ctx, EVP_des_ede3_ecb(),NULL, key, NULL, 0) <= 0)
/macosx-10.10.1/OpenSSH-189/osslshim/ossl/
H A Dossl-evp.h83 #define EVP_CipherInit_ex ossl_EVP_CipherInit_ex macro
411 int EVP_CipherInit_ex(EVP_CIPHER_CTX *, const EVP_CIPHER *, ENGINE *,
/macosx-10.10.1/OpenSSL098-52/src/crypto/asn1/
H A Dp5_pbev2.c123 EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0);

Completed in 197 milliseconds

123