HomeSort by: relevance | last modified time | path
    Searched defs:buf_inlen (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/apps/
pkeyutl.c 87 int buf_inlen = 0, siglen = -1, keyform = FORMAT_PEM, peerform = FORMAT_PEM; local
282 buf_inlen = bio_to_mem(&buf_in, keysize * 10, in);
283 if (buf_inlen < 0) {
290 size_t l = (size_t)buf_inlen;
300 if (buf_inlen > EVP_MAX_MD_SIZE
310 buf_in, (size_t)buf_inlen);
324 buf_in, (size_t)buf_inlen);
330 buf_in, (size_t)buf_inlen);
  /src/crypto/external/bsd/openssl/dist/apps/
pkeyutl.c 115 int buf_inlen = 0, siglen = -1; local
425 buf_inlen = bio_to_mem(&buf_in, -1, in);
426 if (buf_inlen < 0) {
433 size_t l = (size_t)buf_inlen;
444 && buf_inlen > EVP_MAX_MD_SIZE
458 buf_in, (size_t)buf_inlen);
478 buf_in, (size_t)buf_inlen);
484 buf_in, (size_t)buf_inlen);
  /src/crypto/external/apache2/openssl/dist/apps/
pkeyutl.c 161 size_t buf_inlen = 0, siglen = 0; local
528 if (!bio_to_mem(&buf_in, &buf_inlen, 0, in)) {
535 size_t l = buf_inlen;
548 if (buf_inlen > EVP_MAX_MD_SIZE) {
552 buf_inlen, EVP_MAX_MD_SIZE);
562 rv = EVP_PKEY_verify(ctx, sig, siglen, buf_in, buf_inlen);
582 buf_in, buf_inlen, NULL, &secretlen);
593 buf_in, buf_inlen, secret, &secretlen);

Completed in 28 milliseconds