sm3.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright 2017 Ribose Inc. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License 2.0 (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. /* This header can move into provider when legacy support is removed */
  11. #ifndef OSSL_INTERNAL_SM3_H
  12. # define OSSL_INTERNAL_SM3_H
  13. # pragma once
  14. # include <openssl/opensslconf.h>
  15. # ifdef OPENSSL_NO_SM3
  16. # error SM3 is disabled.
  17. # endif
  18. # define SM3_DIGEST_LENGTH 32
  19. # define SM3_WORD unsigned int
  20. # define SM3_CBLOCK 64
  21. # define SM3_LBLOCK (SM3_CBLOCK/4)
  22. typedef struct SM3state_st {
  23. SM3_WORD A, B, C, D, E, F, G, H;
  24. SM3_WORD Nl, Nh;
  25. SM3_WORD data[SM3_LBLOCK];
  26. unsigned int num;
  27. } SM3_CTX;
  28. int ossl_sm3_init(SM3_CTX *c);
  29. int ossl_sm3_update(SM3_CTX *c, const void *data, size_t len);
  30. int ossl_sm3_final(unsigned char *md, SM3_CTX *c);
  31. #endif /* OSSL_INTERNAL_SM3_H */