if_alg.h 882 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * if_alg: User-space algorithm interface
  3. *
  4. * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. *
  11. */
  12. #ifndef _LINUX_IF_ALG_H
  13. #define _LINUX_IF_ALG_H
  14. #include <linux/types.h>
  15. struct sockaddr_alg {
  16. __u16 salg_family;
  17. __u8 salg_type[14];
  18. __u32 salg_feat;
  19. __u32 salg_mask;
  20. __u8 salg_name[64];
  21. };
  22. struct af_alg_iv {
  23. __u32 ivlen;
  24. __u8 iv[0];
  25. };
  26. /* Socket options */
  27. #define ALG_SET_KEY 1
  28. #define ALG_SET_IV 2
  29. #define ALG_SET_OP 3
  30. #define ALG_SET_AEAD_ASSOCLEN 4
  31. #define ALG_SET_AEAD_AUTHSIZE 5
  32. /* Operations */
  33. #define ALG_OP_DECRYPT 0
  34. #define ALG_OP_ENCRYPT 1
  35. #endif /* _LINUX_IF_ALG_H */