sha.h 611 B

1234567891011121314151617181920
  1. #include <contrib/libs/openssl/redef.h>
  2. /*
  3. * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
  4. * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * Licensed under the OpenSSL license (the "License"). You may not use
  7. * this file except in compliance with the License. You can obtain a copy
  8. * in the file LICENSE in the source distribution or at
  9. * https://www.openssl.org/source/license.html
  10. */
  11. #ifndef OSSL_CRYPTO_SHA_H
  12. # define OSSL_CRYPTO_SHA_H
  13. # include <openssl/opensslconf.h>
  14. int sha512_224_init(SHA512_CTX *);
  15. int sha512_256_init(SHA512_CTX *);
  16. #endif