Searched refs:EVP_Cipher (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.10.1/OpenSSH-189/openssh/
H A Dcipher-3des1.c120 EVP_Cipher(&c->k1, dest, (u_char *)src, len);
121 EVP_Cipher(&c->k2, dest, dest, len);
122 EVP_Cipher(&c->k3, dest, dest, len);
124 if (EVP_Cipher(&c->k1, dest, (u_char *)src, len) == 0 ||
125 EVP_Cipher(&c->k2, dest, dest, len) == 0 ||
126 EVP_Cipher(&c->k3, dest, dest, len) == 0)
H A Dcipher.c294 if (EVP_Cipher(&cc->evp, discard, junk,
296 fatal("evp_crypt: EVP_Cipher failed during discard");
334 EVP_Cipher(&cc->evp, NULL, (u_char *)src, aadlen) < 0)
335 fatal("%s: EVP_Cipher(aad) failed", __func__);
340 if (EVP_Cipher(&cc->evp, dest + aadlen, (u_char *)src + aadlen,
342 fatal("%s: EVP_Cipher failed", __func__);
345 if (EVP_Cipher(&cc->evp, NULL, NULL, 0) < 0) {
347 fatal("%s: EVP_Cipher(final) failed", __func__);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-evp.c84 EVP_Cipher(c, data, data, len);
115 EVP_Cipher(c, data, data, len);
128 EVP_Cipher(c, p, p, i);
139 EVP_Cipher(c, p, tmp, blocksize);
152 EVP_Cipher(c, p, p, i);
165 EVP_Cipher(c, tmp2, p, blocksize);
174 EVP_Cipher(c, p, tmp3, blocksize);
H A Dcrypto-des-common.c84 EVP_Cipher(&ctx->ectx, p, p, 24);
112 EVP_Cipher(&ctx->dctx, tmp, C->checksum.data, 24);
H A Dcrypto-arcfour.c184 EVP_Cipher(&ctx, cdata + 16, cdata + 16, len - 16);
241 EVP_Cipher(&ctx, cdata + 16, cdata + 16, len - 16);
H A Dcrypto-des.c231 EVP_Cipher(c, data, data, len);
250 EVP_Cipher(c, data, data, len);
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dopenssl-compat.h126 # ifdef EVP_Cipher
127 # undef EVP_Cipher macro
130 # define EVP_Cipher(a,b,c,d) ssh_EVP_Cipher((a),(b),(c),(d)) macro
H A Dopenssl-compat.c58 EVP_Cipher(evp, dst, src, len);
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Dvalidate.c246 if (!EVP_Cipher(&ectx, d, t->indata, t->datasize))
252 if (!EVP_Cipher(&dctx, d, d, t->datasize))
H A Devp.h57 #define EVP_Cipher hc_EVP_Cipher macro
306 int EVP_Cipher(EVP_CIPHER_CTX *,void *,const void *,size_t);
H A Dtest_cipher.c261 if (!EVP_Cipher(&ectx, d, t->indata, t->datasize))
271 if (!EVP_Cipher(&dctx, d, d, t->datasize))
/macosx-10.10.1/OpenSSL098-52/src/fips/aes/
H A Dfips_aesavs.c219 EVP_Cipher(ctx, ciphertext, plaintext, len);
221 EVP_Cipher(ctx, plaintext, ciphertext, len);
311 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
316 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
339 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
344 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
360 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
362 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
394 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
396 EVP_Cipher(
[all...]
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dfips_aesavs.c219 EVP_Cipher(ctx, ciphertext, plaintext, len);
221 EVP_Cipher(ctx, plaintext, ciphertext, len);
311 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
316 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
339 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
344 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
360 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
362 EVP_Cipher(&ctx, ptext[j], ctext[j], len);
394 EVP_Cipher(&ctx, ctext[j], ptext[j], len);
396 EVP_Cipher(
[all...]
H A Dfips_test_suite.c57 EVP_Cipher(&ctx, citmp, plaintext, 16);
60 EVP_Cipher(&ctx, pltmp, citmp, 16);
81 EVP_Cipher(&ctx, citmp, plaintext, 8);
84 EVP_Cipher(&ctx, pltmp, citmp, 8);
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/krb5/
H A Darcfour.c240 EVP_Cipher(&rc4_key, p, p, 8);
315 EVP_Cipher(&rc4_key, SND_SEQ, p, 8);
468 EVP_Cipher(&rc4_key, p0 + 24, p0 + 24, 8 + datalen);
487 EVP_Cipher(&rc4_key, p0 + 8, p0 + 8 /* SND_SEQ */, 8);
587 EVP_Cipher(&rc4_key, SND_SEQ, p0 + 8, 8);
635 EVP_Cipher(&rc4_key, Confounder, p0 + 24, 8);
636 EVP_Cipher(&rc4_key, output_message_buffer->value, p0 + GSS_ARCFOUR_WRAP_TOKEN_SIZE, datalen);
H A Dunwrap.c111 EVP_Cipher(&des_ctx, p, p, input_message_buffer->length - len);
153 EVP_Cipher(&des_ctx, p, p, 8);
/macosx-10.10.1/OpenSSH-189/osslshim/tests/
H A Dtest_cipher.c291 if (!EVP_Cipher(&ectx, d, t->indata, t->datasize)) {
302 if (!EVP_Cipher(&dctx, d, d, t->datasize)) {
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/ntlm/
H A Dcrypto.c186 EVP_Cipher(signkey, out + 4, signature, sizeof(signature));
239 EVP_Cipher(sealkey, out + 4, hmac, 8);
296 EVP_Cipher(sealkey, iovp->buffer.value, iovp->buffer.value,
328 EVP_Cipher(sealkey, iovp->buffer.value, iovp->buffer.value,
490 EVP_Cipher(&ctx->u.v1.crypto_recv.key, signature,
656 EVP_Cipher(&ctx->u.v1.crypto_send.key,
772 EVP_Cipher(&ctx->u.v1.crypto_recv.key,
/macosx-10.10.1/OpenSSL098-52/src/fips/
H A Dfips_test_suite.c57 EVP_Cipher(&ctx, citmp, plaintext, 16);
60 EVP_Cipher(&ctx, pltmp, citmp, 16);
81 EVP_Cipher(&ctx, citmp, plaintext, 8);
84 EVP_Cipher(&ctx, pltmp, citmp, 8);
H A Dfips.c497 EVP_Cipher(ctx, citmp, plaintext, len);
502 EVP_Cipher(ctx, pltmp, citmp, len);
/macosx-10.10.1/OpenSSL098-52/src/ssl/
H A Dd1_enc.c223 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
245 EVP_Cipher(ds,rec->data,rec->input,l);
H A Ds2_enc.c149 EVP_Cipher(ds,s->s2->mac_data,s->s2->mac_data,l);
/macosx-10.10.1/OpenSSH-189/osslshim/ossl/
H A Dossl-evp.h82 #define EVP_Cipher ossl_EVP_Cipher macro
419 int EVP_Cipher(EVP_CIPHER_CTX *, void *, const void *, size_t);
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/netlogon/
H A Dcrypto.c292 EVP_Cipher(&sealkey, confounder, confounder, 8);
309 EVP_Cipher(&sealkey, iovp->buffer.value, iovp->buffer.value,
335 EVP_Cipher(&seqkey, sig->SequenceNumber, sig->SequenceNumber, 8);
/macosx-10.10.1/OpenSSL098-52/src/fips/des/
H A Dfips_desmovs.c127 EVP_Cipher(ctx, out, in, len);
220 EVP_Cipher(&ctx,text,text,len);

Completed in 160 milliseconds

12