1 /* SPDX-License-Identifier: GPL-2.0-or-later * 1 2 /* Asymmetric public-key cryptography data par 3 * 4 * See Documentation/crypto/asymmetric-keys.rs 5 * 6 * Copyright (C) 2012 Red Hat, Inc. All Rights 7 * Written by David Howells (dhowells@redhat.c 8 */ 9 10 #ifndef _KEYS_ASYMMETRIC_PARSER_H 11 #define _KEYS_ASYMMETRIC_PARSER_H 12 13 struct key_preparsed_payload; 14 15 /* 16 * Key data parser. Called during key instant 17 */ 18 struct asymmetric_key_parser { 19 struct list_head link; 20 struct module *owner; 21 const char *name; 22 23 /* Attempt to parse a key from the dat 24 * keyctl_instantiate(). Should also 25 * that the caller can optionally use 26 * 27 * Return EBADMSG if not recognised. 28 */ 29 int (*parse)(struct key_preparsed_payl 30 }; 31 32 extern int register_asymmetric_key_parser(stru 33 extern void unregister_asymmetric_key_parser(s 34 35 #endif /* _KEYS_ASYMMETRIC_PARSER_H */ 36
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.