1 /* $NetBSD: xform.h,v 1.9 2008/02/02 02:39:01 tls Exp $ */
2 /* $FreeBSD: src/sys/opencrypto/xform.h,v 1.1.2.1 2002/11/21 23:34:23 sam Exp $ */
3 /* $OpenBSD: xform.h,v 1.10 2002/04/22 23:10:09 deraadt Exp $ */
6 * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
8 * This code was written by Angelos D. Keromytis in Athens, Greece, in
9 * February 2000. Network Security Technologies Inc. (NSTI) kindly
10 * supported the development of this code.
12 * Copyright (c) 2000 Angelos D. Keromytis
14 * Permission to use, copy, and modify this software with or without fee
15 * is hereby granted, provided that this entire notice is included in
16 * all source code copies of any software which is or includes a copy or
17 * modification of this software.
19 * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
20 * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
21 * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
22 * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
26 #ifndef _CRYPTO_XFORM_H_
27 #define _CRYPTO_XFORM_H_
32 #include <sys/rmd160.h>
44 /* Provide array-limit for clients (e.g., netipsec) */
45 #define AH_ALEN_MAX 20 /* max authenticator hash length */
51 u_int16_t minkey
, maxkey
;
60 extern const u_int8_t hmac_ipad_buffer
[64];
61 extern const u_int8_t hmac_opad_buffer
[64];
63 extern struct enc_xform enc_xform_null
;
64 extern struct enc_xform enc_xform_des
;
65 extern struct enc_xform enc_xform_3des
;
66 extern struct enc_xform enc_xform_blf
;
67 extern struct enc_xform enc_xform_cast5
;
68 extern struct enc_xform enc_xform_skipjack
;
69 extern struct enc_xform enc_xform_rijndael128
;
70 extern struct enc_xform enc_xform_arc4
;
72 extern struct auth_hash auth_hash_null
;
73 extern struct auth_hash auth_hash_md5
;
74 extern struct auth_hash auth_hash_sha1
;
75 extern struct auth_hash auth_hash_key_md5
;
76 extern struct auth_hash auth_hash_key_sha1
;
77 extern struct auth_hash auth_hash_hmac_md5
;
78 extern struct auth_hash auth_hash_hmac_sha1
;
79 extern struct auth_hash auth_hash_hmac_ripemd_160
;
80 extern struct auth_hash auth_hash_hmac_md5_96
;
81 extern struct auth_hash auth_hash_hmac_sha1_96
;
82 extern struct auth_hash auth_hash_hmac_ripemd_160_96
;
83 extern struct auth_hash auth_hash_hmac_sha2_256
;
84 extern struct auth_hash auth_hash_hmac_sha2_384
;
85 extern struct auth_hash auth_hash_hmac_sha2_512
;
87 extern struct comp_algo comp_algo_deflate
;
88 extern struct comp_algo comp_algo_gzip
;
91 #include <sys/malloc.h>
92 MALLOC_DECLARE(M_XDATA
);
94 #endif /* _CRYPTO_XFORM_H_ */