aboutsummaryrefslogtreecommitdiff
path: root/devel/got/files/openbsd-compat/sha2.h
blob: 28eb07763b8f6bc05ae37c90a864ef24eb8fd17f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _OPENBSD_COMPAT_SHA2_H_
#define _OPENBSD_COMPAT_SHA2_H_

#include <sha256.h>

#define SHA2_CTX	SHA256_CTX
#define SHA256Init	SHA256_Init
#define SHA256Update	SHA256_Update
#define SHA256Final	SHA256_Final

#endif