sha1_one.c 750 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (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. #include <stdio.h>
  10. #include <string.h>
  11. #include <openssl/crypto.h>
  12. #include <openssl/sha.h>
  13. unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md)
  14. {
  15. SHA_CTX c;
  16. static unsigned char m[SHA_DIGEST_LENGTH];
  17. if (md == NULL)
  18. md = m;
  19. if (!SHA1_Init(&c))
  20. return NULL;
  21. SHA1_Update(&c, d, n);
  22. SHA1_Final(md, &c);
  23. OPENSSL_cleanse(&c, sizeof(c));
  24. return md;
  25. }