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 14 #ifndef _KEYS_ASYMMETRIC_TYPE_H 15 #define _KEYS_ASYMMETRIC_TYPE_H 16 17 #include <linux/key-type.h> 18 19 extern struct key_type key_type_asymmetric; 20 21 /* 22 * The payload is at the discretion of the subtype. 23 */ 24 25 #endif /* _KEYS_ASYMMETRIC_TYPE_H */ 26