HomeSort by: relevance | last modified time | path
    Searched defs:recip (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
powidf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powisf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powitf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
powixf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
powidf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powisf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powitf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
powixf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
  /src/crypto/external/bsd/openssh/dist/
smult_curve25519_ref.c 183 static void recip(unsigned int out[32],const unsigned int z[32]) function
263 recip(work + 32,work + 32);
smult_curve25519_ref.c 183 static void recip(unsigned int out[32],const unsigned int z[32]) function
263 recip(work + 32,work + 32);
  /src/crypto/external/bsd/openssl/dist/crypto/cms/
cms_smime.c 635 X509 *recip; local
644 recip = sk_X509_value(certs, i);
645 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
cms_smime.c 635 X509 *recip; local
644 recip = sk_X509_value(certs, i);
645 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/cms/
cms_smime.c 551 X509 *recip; local
556 recip = sk_X509_value(certs, i);
557 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
cms_smime.c 551 X509 *recip; local
556 recip = sk_X509_value(certs, i);
557 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
  /src/crypto/external/apache2/openssl/dist/crypto/cms/
cms_smime.c 643 X509 *recip; local
653 recip = sk_X509_value(certs, i);
654 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
cms_smime.c 643 X509 *recip; local
653 recip = sk_X509_value(certs, i);
654 if (!CMS_add1_recipient_cert(cms, recip, flags)) {
  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_msg.c 481 X509 *recip = ctx->validatedSrvCert; /* this is the client cert */ local
485 || !X509_add_cert(encryption_recips, recip, X509_ADD_FLAG_UP_REF))
cmp_msg.c 481 X509 *recip = ctx->validatedSrvCert; /* this is the client cert */ local
485 || !X509_add_cert(encryption_recips, recip, X509_ADD_FLAG_UP_REF))
  /src/crypto/external/apache2/openssl/dist/test/
evp_pkey_dhkem_test.c 520 EVP_PKEY *recip = NULL; local
541 if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, curve))
547 if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve))
554 ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_pkey(libctx, recip, NULL))
580 EVP_PKEY_free(recip);
evp_pkey_dhkem_test.c 520 EVP_PKEY *recip = NULL; local
541 if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, curve))
547 if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve))
554 ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_pkey(libctx, recip, NULL))
580 EVP_PKEY_free(recip);
  /src/crypto/external/bsd/openssl.old/dist/apps/
smime.c 72 {"recip", OPT_RECIP, '<', "Recipient certificate file for decryption"},
119 X509 *cert = NULL, *recip = NULL, *signer = NULL; local
419 if ((recip = load_cert(recipfile, FORMAT_PEM,
546 if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
604 X509_free(recip);
smime.c 72 {"recip", OPT_RECIP, '<', "Recipient certificate file for decryption"},
119 X509 *cert = NULL, *recip = NULL, *signer = NULL; local
419 if ((recip = load_cert(recipfile, FORMAT_PEM,
546 if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
604 X509_free(recip);
  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup.h 64 char *recip; /* envelope recipient address */ member in struct:CLEANUP_STATE
cleanup.h 64 char *recip; /* envelope recipient address */ member in struct:CLEANUP_STATE
  /src/crypto/external/apache2/openssl/dist/apps/
smime.c 138 { "recip", OPT_RECIP, '<', "Recipient certificate file for decryption" },
203 X509 *cert = NULL, *recip = NULL, *signer = NULL; local
538 if ((recip = load_cert(recipfile, FORMAT_UNDEF,
675 if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
733 X509_free(recip);

Completed in 68 milliseconds

1 2