RTEMS 6.1-rc1
Data Structures | Macros | Typedefs | Functions
sha512.h File Reference

This header file contains interfaces of the SHA512 hash algorithm support. More...

#include <sys/types.h>

Go to the source code of this file.

Data Structures

struct  SHA512Context
 

Macros

#define SHA512_BLOCK_LENGTH   128
 
#define SHA512_DIGEST_LENGTH   64
 
#define SHA512_DIGEST_STRING_LENGTH   (SHA512_DIGEST_LENGTH * 2 + 1)
 

Typedefs

typedef struct SHA512Context SHA512_CTX
 

Functions

__BEGIN_DECLS void SHA512_Init (SHA512_CTX *)
 
void SHA512_Update (SHA512_CTX *, const void *, size_t)
 
void SHA512_Final (unsigned char[__min_size(SHA512_DIGEST_LENGTH)], SHA512_CTX *)
 
char * SHA512_End (SHA512_CTX *, char *)
 
char * SHA512_Data (const void *, unsigned int, char *)
 
char * SHA512_File (const char *, char *)
 
char * SHA512_FileChunk (const char *, char *, off_t, off_t)
 

Detailed Description

This header file contains interfaces of the SHA512 hash algorithm support.