xform.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* $FreeBSD$ */
  2. /* $OpenBSD: xform.h,v 1.8 2001/08/28 12:20:43 ben Exp $ */
  3. /*-
  4. * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
  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. #ifndef _CRYPTO_XFORM_H_
  30. #define _CRYPTO_XFORM_H_
  31. #include <crypto/sha1.h>
  32. #include <crypto/sha2/sha256.h>
  33. #include <crypto/sha2/sha384.h>
  34. #include <crypto/sha2/sha512.h>
  35. #include <opencrypto/rmd160.h>
  36. #include <opencrypto/gmac.h>
  37. #include <opencrypto/xform_auth.h>
  38. #include <opencrypto/xform_comp.h>
  39. #include <opencrypto/xform_enc.h>
  40. #ifdef _KERNEL
  41. #include <sys/malloc.h>
  42. MALLOC_DECLARE(M_XDATA);
  43. #endif
  44. #endif /* _CRYPTO_XFORM_H_ */