mdc2_one.c 765 B

123456789101112131415161718192021222324252627
  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 "internal/cryptlib.h"
  11. #include <openssl/mdc2.h>
  12. unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md)
  13. {
  14. MDC2_CTX c;
  15. static unsigned char m[MDC2_DIGEST_LENGTH];
  16. if (md == NULL)
  17. md = m;
  18. if (!MDC2_Init(&c))
  19. return NULL;
  20. MDC2_Update(&c, d, n);
  21. MDC2_Final(md, &c);
  22. OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
  23. return md;
  24. }