Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/opencrypto/xform.h
39475 views
1
/* $OpenBSD: xform.h,v 1.8 2001/08/28 12:20:43 ben Exp $ */
2
3
/*-
4
* The author of this code is Angelos D. Keromytis ([email protected])
5
*
6
* This code was written by Angelos D. Keromytis in Athens, Greece, in
7
* February 2000. Network Security Technologies Inc. (NSTI) kindly
8
* supported the development of this code.
9
*
10
* Copyright (c) 2000 Angelos D. Keromytis
11
* Copyright (c) 2014 The FreeBSD Foundation
12
* All rights reserved.
13
*
14
* Portions of this software were developed by John-Mark Gurney
15
* under sponsorship of the FreeBSD Foundation and
16
* Rubicon Communications, LLC (Netgate).
17
*
18
* Permission to use, copy, and modify this software without fee
19
* is hereby granted, provided that this entire notice is included in
20
* all source code copies of any software which is or includes a copy or
21
* modification of this software.
22
*
23
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
24
* IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
25
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
26
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
27
* PURPOSE.
28
*/
29
30
#ifndef _CRYPTO_XFORM_H_
31
#define _CRYPTO_XFORM_H_
32
33
#include <crypto/sha1.h>
34
#include <crypto/sha2/sha256.h>
35
#include <crypto/sha2/sha384.h>
36
#include <crypto/sha2/sha512.h>
37
#include <opencrypto/rmd160.h>
38
#include <opencrypto/gmac.h>
39
40
#include <opencrypto/xform_auth.h>
41
#include <opencrypto/xform_comp.h>
42
#include <opencrypto/xform_enc.h>
43
44
#endif /* _CRYPTO_XFORM_H_ */
45
46