bglibs
sha384.h
1 #ifndef BGLIBS__SHA384__H__
2 #define BGLIBS__SHA384__H__
3 
4 #include "sysdeps.h"
5 #include "sha512.h"
6 
7 #define SHA384_DIGEST_LENGTH (384/8)
8 
9 typedef struct SHA512_ctx SHA384_ctx;
10 
11 void SHA384_init (SHA384_ctx*);
12 #define SHA384_update SHA512_update
13 void SHA384_final (SHA384_ctx*, uint8*);
14 
15 #endif
Definition: sha512.h:8