sm3_rngtest.c 440 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2014-2022 The GmSSL Project. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the License); you may
  5. * not use this file except in compliance with the License.
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. */
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <stdlib.h>
  12. #include <stdint.h>
  13. #include <gmssl/sm3_rng.h>
  14. #include <gmssl/error.h>
  15. int main(void)
  16. {
  17. error_print();
  18. return 1;
  19. }