From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/ext/digest/sha2/sha2ossl.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 jni/ruby/ext/digest/sha2/sha2ossl.h (limited to 'jni/ruby/ext/digest/sha2/sha2ossl.h') diff --git a/jni/ruby/ext/digest/sha2/sha2ossl.h b/jni/ruby/ext/digest/sha2/sha2ossl.h new file mode 100644 index 0000000..4229d14 --- /dev/null +++ b/jni/ruby/ext/digest/sha2/sha2ossl.h @@ -0,0 +1,17 @@ +#ifndef SHA2OSSL_H_INCLUDED +#define SHA2OSSL_H_INCLUDED + +#include +#include + +#define SHA256_BLOCK_LENGTH SHA256_CBLOCK +#define SHA384_BLOCK_LENGTH SHA512_CBLOCK +#define SHA512_BLOCK_LENGTH SHA512_CBLOCK + +typedef SHA512_CTX SHA384_CTX; + +void SHA256_Finish(SHA256_CTX *ctx, char *buf); +void SHA384_Finish(SHA384_CTX *ctx, char *buf); +void SHA512_Finish(SHA512_CTX *ctx, char *buf); + +#endif -- cgit v1.2.3