1 /* Asymmetric public-key algorithm definitions
3 * See Documentation/crypto/asymmetric-keys.txt
5 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
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.
14 #ifndef _LINUX_PUBLIC_KEY_H
15 #define _LINUX_PUBLIC_KEY_H
17 #include <linux/keyctl.h>
18 #include <linux/oid_registry.h>
21 * Cryptographic data for the public-key subtype of the asymmetric key type.
23 * Note that this may include private part of the key as well as the public
34 const char *pkey_algo;
37 extern void public_key_free(struct public_key *key);
40 * Public key cryptography signature data
42 struct public_key_signature {
43 struct asymmetric_key_id *auth_ids[2];
44 u8 *s; /* Signature */
45 u32 s_size; /* Number of bytes in signature */
47 u8 digest_size; /* Number of bytes in digest */
48 const char *pkey_algo;
49 const char *hash_algo;
53 extern void public_key_signature_free(struct public_key_signature *sig);
55 extern struct asymmetric_key_subtype public_key_subtype;
61 extern int restrict_link_by_signature(struct key *dest_keyring,
62 const struct key_type *type,
63 const union key_payload *payload,
64 struct key *trust_keyring);
66 extern int restrict_link_by_key_or_keyring(struct key *dest_keyring,
67 const struct key_type *type,
68 const union key_payload *payload,
71 extern int restrict_link_by_key_or_keyring_chain(struct key *trust_keyring,
72 const struct key_type *type,
73 const union key_payload *payload,
76 extern int query_asymmetric_key(const struct kernel_pkey_params *,
77 struct kernel_pkey_query *);
79 extern int encrypt_blob(struct kernel_pkey_params *, const void *, void *);
80 extern int decrypt_blob(struct kernel_pkey_params *, const void *, void *);
81 extern int create_signature(struct kernel_pkey_params *, const void *, void *);
82 extern int verify_signature(const struct key *,
83 const struct public_key_signature *);
85 int public_key_verify_signature(const struct public_key *pkey,
86 const struct public_key_signature *sig);
88 #endif /* _LINUX_PUBLIC_KEY_H */