HomeSort by: relevance | last modified time | path
    Searched refs:EVP_CipherInit_ex (Results 1 - 25 of 121) sorted by relevancy

1 2 3 4 5

  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
crypto-evp.c 56 if (!EVP_CipherInit_ex(key->ectx, c, NULL, kd->key->keyvalue.data, NULL, 1))
58 if (!EVP_CipherInit_ex(key->dctx, c, NULL, kd->key->keyvalue.data, NULL, 0))
96 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, loiv, -1))
99 } else if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, ivec, -1))
133 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1))
140 ret = EVP_CipherInit_ex(c, NULL, NULL, NULL, ivec, -1);
142 ret = EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1);
160 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1))
187 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1))
197 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, zero_ivec, -1)
    [all...]
crypto-des-common.c 91 if (!EVP_CipherInit_ex(ctx->ectx, NULL, NULL, NULL, (void *)&ivec, -1))
124 if (!EVP_CipherInit_ex(ctx->dctx, NULL, NULL, NULL, (void *)&ivec, -1))
crypto-aes-sha1.c 137 if (EVP_CipherInit_ex(ctx, c, NULL, derived->keyvalue.data, NULL, 1)) {
crypto-des.c 231 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, (void *)&ivec, -1))
251 if (!EVP_CipherInit_ex(c, NULL, NULL, NULL, (void *)&ivec, -1))
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
validate.c 228 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1)
229 errx(1, "%s: EVP_CipherInit_ex einit", t->name);
230 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1)
231 errx(1, "%s: EVP_CipherInit_ex dinit", t->name);
236 if (EVP_CipherInit_ex(&ectx, NULL, NULL, t->key, t->iv, 1) != 1)
237 errx(1, "%s: EVP_CipherInit_ex encrypt", t->name);
238 if (EVP_CipherInit_ex(&dctx, NULL, NULL, t->key, t->iv, 0) != 1)
239 errx(1, "%s: EVP_CipherInit_ex decrypt", t->name);
test_bulk.c 140 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1)
142 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1)
148 if (EVP_CipherInit_ex(&ectx, NULL, NULL, key, iv, 1) != 1)
150 if (EVP_CipherInit_ex(&dctx, NULL, NULL, key, iv, 0) != 1)
test_cipher.c 267 if (EVP_CipherInit_ex(&ectx, c, NULL, NULL, NULL, 1) != 1)
268 errx(1, "%s: %d EVP_CipherInit_ex einit", t->name, i);
269 if (EVP_CipherInit_ex(&dctx, c, NULL, NULL, NULL, 0) != 1)
270 errx(1, "%s: %d EVP_CipherInit_ex dinit", t->name, i);
275 if (EVP_CipherInit_ex(&ectx, NULL, NULL, t->key, t->iv, 1) != 1)
276 errx(1, "%s: %d EVP_CipherInit_ex encrypt", t->name, i);
277 if (EVP_CipherInit_ex(&dctx, NULL, NULL, t->key, t->iv, 0) != 1)
278 errx(1, "%s: %d EVP_CipherInit_ex decrypt", t->name, i);
example_evp_cipher.c 140 if (!EVP_CipherInit_ex(&ctx, c, NULL, key, ivec, encryptp))
141 errx(1, "EVP_CipherInit_ex failed");
evp.h 60 #define EVP_CipherInit_ex hc_EVP_CipherInit_ex
330 int EVP_CipherInit_ex(EVP_CIPHER_CTX *,const EVP_CIPHER *, ENGINE *,
  /src/crypto/external/apache2/openssl/dist/test/
afalgtest.c 79 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1))
89 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0))
  /src/crypto/external/bsd/openssl/dist/test/
afalgtest.c 85 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1))
95 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0))
tls13encryptiontest.c 363 if (EVP_CipherInit_ex(s->enc_write_ctx, ciph, NULL, key, NULL, 1) <= 0
364 || EVP_CipherInit_ex(s->enc_read_ctx, ciph, NULL, key, NULL, 0)
  /src/crypto/external/bsd/openssl.old/dist/crypto/rand/
drbg_ctr.c 199 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->KX, NULL, -1))
264 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1)
265 || !EVP_CipherInit_ex(ctr->ctx_ctr, NULL, NULL, ctr->K, NULL, -1))
282 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1))
353 if (!EVP_CipherInit_ex(ctr->ctx_ctr,
442 || !EVP_CipherInit_ex(ctr->ctx_ecb,
444 || !EVP_CipherInit_ex(ctr->ctx_ctr,
466 if (!EVP_CipherInit_ex(ctr->ctx_df,
  /src/crypto/external/bsd/openssl.old/dist/test/
afalgtest.c 70 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1))
80 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0))
  /src/crypto/external/bsd/openssl.old/dist/crypto/pkcs12/
p12_crpt.c 66 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
  /src/crypto/external/apache2/openssl/dist/crypto/pkcs12/
p12_crpt.c 72 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, piv, en_de);
  /src/crypto/external/bsd/openssl/dist/crypto/pkcs12/
p12_crpt.c 72 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, piv, en_de);
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
p5_crpt.c 100 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
p5_crpt.c 101 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
p5_crpt.c 105 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
  /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/
drbg_ctr.c 241 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->KX, NULL, -1))
306 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1)
307 || !EVP_CipherInit_ex(ctr->ctx_ctr, NULL, NULL, ctr->K, NULL, -1))
324 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1))
428 if (!EVP_CipherInit_ex(ctr->ctx_ctr,
580 if (!EVP_CipherInit_ex(ctr->ctx_ecb,
582 || !EVP_CipherInit_ex(ctr->ctx_ctr,
607 if (!EVP_CipherInit_ex(ctr->ctx_df,
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
p5_scrypt.c 94 if (EVP_CipherInit_ex(ctx, cipher, NULL, NULL, iv, 0) == 0)
271 rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);
  /src/crypto/external/bsd/openssl/dist/crypto/cms/
cms_enc.c 78 if (EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc) <= 0) {
164 if (EVP_CipherInit_ex(ctx, NULL, NULL, ec->key, piv, enc) <= 0) {
  /src/crypto/external/bsd/openssl/dist/providers/implementations/rands/
drbg_ctr.c 234 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->KX, NULL, -1))
299 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1)
300 || !EVP_CipherInit_ex(ctr->ctx_ctr, NULL, NULL, ctr->K, NULL, -1))
317 if (!EVP_CipherInit_ex(ctr->ctx_ecb, NULL, NULL, ctr->K, NULL, -1))
412 if (!EVP_CipherInit_ex(ctr->ctx_ctr,
545 if (!EVP_CipherInit_ex(ctr->ctx_ecb,
547 || !EVP_CipherInit_ex(ctr->ctx_ctr,
572 if (!EVP_CipherInit_ex(ctr->ctx_df,
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
p5_scrypt.c 94 if (EVP_CipherInit_ex(ctx, cipher, NULL, NULL, iv, 0) == 0)
267 rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);

Completed in 30 milliseconds

1 2 3 4 5