sm3.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include <contrib/libs/openssl/redef.h>
  2. /*
  3. * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  4. * Copyright 2017 Ribose Inc. 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_SM3_H
  12. # define OSSL_CRYPTO_SM3_H
  13. # include <openssl/opensslconf.h>
  14. # ifdef OPENSSL_NO_SM3
  15. # error SM3 is disabled.
  16. # endif
  17. # define SM3_DIGEST_LENGTH 32
  18. # define SM3_WORD unsigned int
  19. # define SM3_CBLOCK 64
  20. # define SM3_LBLOCK (SM3_CBLOCK/4)
  21. typedef struct SM3state_st {
  22. SM3_WORD A, B, C, D, E, F, G, H;
  23. SM3_WORD Nl, Nh;
  24. SM3_WORD data[SM3_LBLOCK];
  25. unsigned int num;
  26. } SM3_CTX;
  27. int sm3_init(SM3_CTX *c);
  28. int sm3_update(SM3_CTX *c, const void *data, size_t len);
  29. int sm3_final(unsigned char *md, SM3_CTX *c);
  30. void sm3_block_data_order(SM3_CTX *c, const void *p, size_t num);
  31. #endif