summaryrefslogtreecommitdiff
path: root/ruby_2_2/ext/digest/sha2/sha2ossl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ext/digest/sha2/sha2ossl.h')
-rw-r--r--ruby_2_2/ext/digest/sha2/sha2ossl.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/ruby_2_2/ext/digest/sha2/sha2ossl.h b/ruby_2_2/ext/digest/sha2/sha2ossl.h
deleted file mode 100644
index 4229d14cf9..0000000000
--- a/ruby_2_2/ext/digest/sha2/sha2ossl.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef SHA2OSSL_H_INCLUDED
-#define SHA2OSSL_H_INCLUDED
-
-#include <stddef.h>
-#include <openssl/sha.h>
-
-#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