HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.2.10/ext/digest/sha2/sha2ossl.h
#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