HomeSort by: relevance | last modified time | path
    Searched refs:sigbio (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/apps/
pkeyutl.c 266 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
268 if (sigbio == NULL) {
272 siglen = bio_to_mem(&sig, keysize * 10, sigbio);
273 BIO_free(sigbio);
dgst.c 363 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
364 if (sigbio == NULL) {
371 siglen = BIO_read(sigbio, sigbuf, siglen);
372 BIO_free(sigbio);
  /src/crypto/external/apache2/openssl/dist/apps/
dgst.c 424 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
426 if (sigbio == NULL) {
432 siglen = BIO_read(sigbio, sigbuf, siglen);
433 BIO_free(sigbio);
pkeyutl.c 510 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
513 if (sigbio == NULL) {
517 if (!bio_to_mem(&sig, &siglen, maxsiglen, sigbio)) {
518 BIO_free(sigbio);
522 BIO_free(sigbio);
  /src/crypto/external/bsd/openssl/dist/apps/
dgst.c 394 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
396 if (sigbio == NULL) {
402 siglen = BIO_read(sigbio, sigbuf, siglen);
403 BIO_free(sigbio);
pkeyutl.c 408 BIO *sigbio = BIO_new_file(sigfile, "rb"); local
410 if (sigbio == NULL) {
414 siglen = bio_to_mem(&sig, keysize * 10, sigbio);
415 BIO_free(sigbio);

Completed in 28 milliseconds