mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e6dde8be4d
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
414 B
C
17 lines
414 B
C
#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
|