HomeSort by relevance Sort by last modified time
    Searched refs:EVP_MD (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/openssl/crypto/engine/
tb_digest.c 119 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid)
121 const EVP_MD *ret;
eng_openssl.c 117 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
330 static const EVP_MD test_sha_md=
343 sizeof(EVP_MD *)+sizeof(SHA_CTX),
345 static int openssl_digests(ENGINE *e, const EVP_MD **digest,
  /external/openssl/crypto/evp/
evp.h 159 #ifndef EVP_MD
183 } /* EVP_MD */;
263 #endif /* !EVP_MD */
267 const EVP_MD *digest;
273 /* Update function: usually copied from EVP_MD */
448 const EVP_MD *md, int en_de);
476 int EVP_MD_type(const EVP_MD *md);
479 int EVP_MD_pkey_type(const EVP_MD *md);
480 int EVP_MD_size(const EVP_MD *md);
481 int EVP_MD_block_size(const EVP_MD *md)
    [all...]
m_sigver.c 67 const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey,
120 const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey)
126 const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey)
digest.c 139 int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
145 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
160 * ENGINE and EVP_MD could be used). */
177 const EVP_MD *d = ENGINE_get_digest(impl, type->type);
352 unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl)
394 /* The EVP_MD we used belongs to an ENGINE, release the
p5_crpt2.c 82 const EVP_MD *digest,
173 ASN1_TYPE *param, const EVP_CIPHER *c, const EVP_MD *md,
232 const EVP_CIPHER *c, const EVP_MD *md, int en_de)
241 const EVP_MD *prfmd;
bio_md.c 175 const EVP_MD **ppmd;
176 EVP_MD *md;
  /external/openssl/include/openssl/
evp.h 159 #ifndef EVP_MD
183 } /* EVP_MD */;
263 #endif /* !EVP_MD */
267 const EVP_MD *digest;
273 /* Update function: usually copied from EVP_MD */
448 const EVP_MD *md, int en_de);
476 int EVP_MD_type(const EVP_MD *md);
479 int EVP_MD_pkey_type(const EVP_MD *md);
480 int EVP_MD_size(const EVP_MD *md);
481 int EVP_MD_block_size(const EVP_MD *md)
    [all...]
rsa.h 389 const unsigned char *seed, long seedlen, const EVP_MD *dgst);
411 const EVP_MD *Hash, const unsigned char *EM, int sLen);
414 const EVP_MD *Hash, int sLen);
417 const EVP_MD *Hash, const EVP_MD *mgf1Hash,
422 const EVP_MD *Hash, const EVP_MD *mgf1Hash, int sLen);
pkcs12.h 220 unsigned char *out, const EVP_MD *md_type);
221 int PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type);
223 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md_type,
230 const EVP_MD *md_type);
232 int saltlen, const EVP_MD *md_type);
  /external/openssl/crypto/ec/
ec_pmeth.c 74 const EVP_MD *md;
223 if (EVP_MD_type((const EVP_MD *)p2) != NID_sha1 &&
224 EVP_MD_type((const EVP_MD *)p2) != NID_ecdsa_with_SHA1 &&
225 EVP_MD_type((const EVP_MD *)p2) != NID_sha224 &&
226 EVP_MD_type((const EVP_MD *)p2) != NID_sha256 &&
227 EVP_MD_type((const EVP_MD *)p2) != NID_sha384 &&
228 EVP_MD_type((const EVP_MD *)p2) != NID_sha512)
  /external/openssl/crypto/pem/
pem_sign.c 67 void PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type)
  /external/openssh/
kexecdh.c 56 const EVP_MD *
68 const EVP_MD *evp_md,
104 EVP_DigestInit(&md, evp_md);
111 dump_digest("hash", digest, EVP_MD_size(evp_md));
114 *hashlen = EVP_MD_size(evp_md);
kexdh.c 54 const EVP_MD *evp_md = EVP_sha1(); local
77 EVP_DigestInit(&md, evp_md);
84 dump_digest("hash", digest, EVP_MD_size(evp_md));
87 *hashlen = EVP_MD_size(evp_md);
ssh-dss.c 50 const EVP_MD *evp_md = EVP_sha1(); local
61 EVP_DigestInit(&md, evp_md);
113 const EVP_MD *evp_md = EVP_sha1(); local
175 EVP_DigestInit(&md, evp_md);
ssh-ecdsa.c 51 const EVP_MD *evp_md; local
62 evp_md = key_ec_nid_to_evpmd(key->ecdsa_nid);
63 EVP_DigestInit(&md, evp_md);
100 const EVP_MD *evp_md; local
113 evp_md = key_ec_nid_to_evpmd(key->ecdsa_nid);
154 EVP_DigestInit(&md, evp_md);
  /external/openssl/crypto/rsa/
rsa_pss.c 74 const EVP_MD *Hash, const unsigned char *EM, int sLen)
80 const EVP_MD *Hash, const EVP_MD *mgf1Hash,
189 const EVP_MD *Hash, int sLen)
196 const EVP_MD *Hash, const EVP_MD *mgf1Hash, int sLen)
rsa.h 389 const unsigned char *seed, long seedlen, const EVP_MD *dgst);
411 const EVP_MD *Hash, const unsigned char *EM, int sLen);
414 const EVP_MD *Hash, int sLen);
417 const EVP_MD *Hash, const EVP_MD *mgf1Hash,
422 const EVP_MD *Hash, const EVP_MD *mgf1Hash, int sLen);
  /external/openssl/crypto/pkcs12/
p12_mutl.c 70 const EVP_MD *md_type;
133 unsigned char *salt, int saltlen, int iter, const EVP_MD *md_type)
157 const EVP_MD *md_type)
p12_crpt.c 70 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de)
pkcs12.h 220 unsigned char *out, const EVP_MD *md_type);
221 int PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type);
223 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md_type,
230 const EVP_MD *md_type);
232 int saltlen, const EVP_MD *md_type);
  /external/openssl/crypto/x509/
x_all.c 91 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
105 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md)
117 int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md)
130 int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md)
383 int X509_pubkey_digest(const X509 *data, const EVP_MD *type, unsigned char *md,
392 int X509_digest(const X509 *data, const EVP_MD *type, unsigned char *md,
398 int X509_CRL_digest(const X509_CRL *data, const EVP_MD *type, unsigned char *md,
404 int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type, unsigned char *md,
410 int X509_NAME_digest(const X509_NAME *data, const EVP_MD *type, unsigned char *md,
416 int PKCS7_ISSUER_AND_SERIAL_digest(PKCS7_ISSUER_AND_SERIAL *data, const EVP_MD *type
    [all...]
  /external/openssl/crypto/asn1/
a_verify.c 81 const EVP_MD *type;
176 const EVP_MD *type;
x_algor.c 131 /* Set up an X509_ALGOR DigestAlgorithmIdentifier from an EVP_MD */
133 void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md)
  /external/openssl/crypto/ocsp/
ocsp_lib.c 76 OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer)
99 OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,

Completed in 427 milliseconds

12 3 4 5 6