BIO_f_md.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*-
  2. * Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*-
  10. * Example of using EVP_MD_fetch and EVP_Digest* methods to calculate
  11. * a digest of static buffers
  12. * You can find SHA3 test vectors from NIST here:
  13. * https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Algorithm-Validation-Program/documents/sha3/sha-3bytetestvectors.zip
  14. * For example, contains these lines:
  15. Len = 80
  16. Msg = 1ca984dcc913344370cf
  17. MD = 6915ea0eeffb99b9b246a0e34daf3947852684c3d618260119a22835659e4f23d4eb66a15d0affb8e93771578f5e8f25b7a5f2a55f511fb8b96325ba2cd14816
  18. * use xxd convert the hex message string to binary input for BIO_f_md:
  19. * echo "1ca984dcc913344370cf" | xxd -r -p | ./BIO_f_md
  20. * and then verify the output matches MD above.
  21. */
  22. #include <string.h>
  23. #include <stdio.h>
  24. #include <openssl/err.h>
  25. #include <openssl/bio.h>
  26. #include <openssl/evp.h>
  27. /*-
  28. * This demonstration will show how to digest data using
  29. * a BIO configured with a message digest
  30. * A message digest name may be passed as an argument.
  31. * The default digest is SHA3-512
  32. */
  33. int main(int argc, char *argv[])
  34. {
  35. int ret = EXIT_FAILURE;
  36. OSSL_LIB_CTX *library_context = NULL;
  37. BIO *input = NULL;
  38. BIO *bio_digest = NULL, *reading = NULL;
  39. EVP_MD *md = NULL;
  40. unsigned char buffer[512];
  41. int digest_size;
  42. char *digest_value = NULL;
  43. int j;
  44. input = BIO_new_fd(fileno(stdin), 1);
  45. if (input == NULL) {
  46. fprintf(stderr, "BIO_new_fd() for stdin returned NULL\n");
  47. goto cleanup;
  48. }
  49. library_context = OSSL_LIB_CTX_new();
  50. if (library_context == NULL) {
  51. fprintf(stderr, "OSSL_LIB_CTX_new() returned NULL\n");
  52. goto cleanup;
  53. }
  54. /*
  55. * Fetch a message digest by name
  56. * The algorithm name is case insensitive.
  57. * See providers(7) for details about algorithm fetching
  58. */
  59. md = EVP_MD_fetch(library_context, "SHA3-512", NULL);
  60. if (md == NULL) {
  61. fprintf(stderr, "EVP_MD_fetch did not find SHA3-512.\n");
  62. goto cleanup;
  63. }
  64. digest_size = EVP_MD_get_size(md);
  65. if (digest_size <= 0) {
  66. fprintf(stderr, "EVP_MD_get_size returned invalid size.\n");
  67. goto cleanup;
  68. }
  69. digest_value = OPENSSL_malloc(digest_size);
  70. if (digest_value == NULL) {
  71. fprintf(stderr, "Can't allocate %lu bytes for the digest value.\n", (unsigned long)digest_size);
  72. goto cleanup;
  73. }
  74. /* Make a bio that uses the digest */
  75. bio_digest = BIO_new(BIO_f_md());
  76. if (bio_digest == NULL) {
  77. fprintf(stderr, "BIO_new(BIO_f_md()) returned NULL\n");
  78. goto cleanup;
  79. }
  80. /* set our bio_digest BIO to digest data */
  81. if (BIO_set_md(bio_digest, md) != 1) {
  82. fprintf(stderr, "BIO_set_md failed.\n");
  83. goto cleanup;
  84. }
  85. /*-
  86. * We will use BIO chaining so that as we read, the digest gets updated
  87. * See the man page for BIO_push
  88. */
  89. reading = BIO_push(bio_digest, input);
  90. while (BIO_read(reading, buffer, sizeof(buffer)) > 0)
  91. ;
  92. /*-
  93. * BIO_gets must be used to calculate the final
  94. * digest value and then copy it to digest_value.
  95. */
  96. if (BIO_gets(bio_digest, digest_value, digest_size) != digest_size) {
  97. fprintf(stderr, "BIO_gets(bio_digest) failed\n");
  98. goto cleanup;
  99. }
  100. for (j = 0; j < digest_size; j++) {
  101. fprintf(stdout, "%02x", (unsigned char)digest_value[j]);
  102. }
  103. fprintf(stdout, "\n");
  104. ret = EXIT_SUCCESS;
  105. cleanup:
  106. if (ret != EXIT_SUCCESS)
  107. ERR_print_errors_fp(stderr);
  108. OPENSSL_free(digest_value);
  109. BIO_free(input);
  110. BIO_free(bio_digest);
  111. EVP_MD_free(md);
  112. OSSL_LIB_CTX_free(library_context);
  113. return ret;
  114. }