rmd_one.c 817 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 1995-2016 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. #include <stdio.h>
  10. #include <string.h>
  11. #include <openssl/ripemd.h>
  12. #include <openssl/crypto.h>
  13. unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md)
  14. {
  15. RIPEMD160_CTX c;
  16. static unsigned char m[RIPEMD160_DIGEST_LENGTH];
  17. if (md == NULL)
  18. md = m;
  19. if (!RIPEMD160_Init(&c))
  20. return NULL;
  21. RIPEMD160_Update(&c, d, n);
  22. RIPEMD160_Final(md, &c);
  23. OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
  24. return md;
  25. }