asymmetric-type.h 716 B

12345678910111213141516171819202122232425
  1. /* Asymmetric Public-key cryptography key type interface
  2. *
  3. * See Documentation/security/asymmetric-keys.txt
  4. *
  5. * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  6. * Written by David Howells (dhowells@redhat.com)
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public Licence
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the Licence, or (at your option) any later version.
  12. */
  13. #ifndef _KEYS_ASYMMETRIC_TYPE_H
  14. #define _KEYS_ASYMMETRIC_TYPE_H
  15. #include <linux/key-type.h>
  16. extern struct key_type key_type_asymmetric;
  17. /*
  18. * The payload is at the discretion of the subtype.
  19. */
  20. #endif /* _KEYS_ASYMMETRIC_TYPE_H */