~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/crypto/public_key.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /* Asymmetric public-key algorithm definitions
  3  *
  4  * See Documentation/crypto/asymmetric-keys.rst
  5  *
  6  * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  7  * Written by David Howells (dhowells@redhat.com)
  8  */
  9 
 10 #ifndef _LINUX_PUBLIC_KEY_H
 11 #define _LINUX_PUBLIC_KEY_H
 12 
 13 #include <linux/errno.h>
 14 #include <linux/keyctl.h>
 15 #include <linux/oid_registry.h>
 16 
 17 /*
 18  * Cryptographic data for the public-key subtype of the asymmetric key type.
 19  *
 20  * Note that this may include private part of the key as well as the public
 21  * part.
 22  */
 23 struct public_key {
 24         void *key;
 25         u32 keylen;
 26         enum OID algo;
 27         void *params;
 28         u32 paramlen;
 29         bool key_is_private;
 30         const char *id_type;
 31         const char *pkey_algo;
 32         unsigned long key_eflags;       /* key extension flags */
 33 #define KEY_EFLAG_CA            0       /* set if the CA basic constraints is set */
 34 #define KEY_EFLAG_DIGITALSIG    1       /* set if the digitalSignature usage is set */
 35 #define KEY_EFLAG_KEYCERTSIGN   2       /* set if the keyCertSign usage is set */
 36 };
 37 
 38 extern void public_key_free(struct public_key *key);
 39 
 40 /*
 41  * Public key cryptography signature data
 42  */
 43 struct public_key_signature {
 44         struct asymmetric_key_id *auth_ids[3];
 45         u8 *s;                  /* Signature */
 46         u8 *digest;
 47         u32 s_size;             /* Number of bytes in signature */
 48         u32 digest_size;        /* Number of bytes in digest */
 49         const char *pkey_algo;
 50         const char *hash_algo;
 51         const char *encoding;
 52 };
 53 
 54 extern void public_key_signature_free(struct public_key_signature *sig);
 55 
 56 extern struct asymmetric_key_subtype public_key_subtype;
 57 
 58 struct key;
 59 struct key_type;
 60 union key_payload;
 61 
 62 extern int restrict_link_by_signature(struct key *dest_keyring,
 63                                       const struct key_type *type,
 64                                       const union key_payload *payload,
 65                                       struct key *trust_keyring);
 66 
 67 extern int restrict_link_by_key_or_keyring(struct key *dest_keyring,
 68                                            const struct key_type *type,
 69                                            const union key_payload *payload,
 70                                            struct key *trusted);
 71 
 72 extern int restrict_link_by_key_or_keyring_chain(struct key *trust_keyring,
 73                                                  const struct key_type *type,
 74                                                  const union key_payload *payload,
 75                                                  struct key *trusted);
 76 
 77 #if IS_REACHABLE(CONFIG_ASYMMETRIC_KEY_TYPE)
 78 extern int restrict_link_by_ca(struct key *dest_keyring,
 79                                const struct key_type *type,
 80                                const union key_payload *payload,
 81                                struct key *trust_keyring);
 82 int restrict_link_by_digsig(struct key *dest_keyring,
 83                             const struct key_type *type,
 84                             const union key_payload *payload,
 85                             struct key *trust_keyring);
 86 #else
 87 static inline int restrict_link_by_ca(struct key *dest_keyring,
 88                                       const struct key_type *type,
 89                                       const union key_payload *payload,
 90                                       struct key *trust_keyring)
 91 {
 92         return 0;
 93 }
 94 
 95 static inline int restrict_link_by_digsig(struct key *dest_keyring,
 96                                           const struct key_type *type,
 97                                           const union key_payload *payload,
 98                                           struct key *trust_keyring)
 99 {
100         return 0;
101 }
102 #endif
103 
104 extern int query_asymmetric_key(const struct kernel_pkey_params *,
105                                 struct kernel_pkey_query *);
106 
107 extern int encrypt_blob(struct kernel_pkey_params *, const void *, void *);
108 extern int decrypt_blob(struct kernel_pkey_params *, const void *, void *);
109 extern int create_signature(struct kernel_pkey_params *, const void *, void *);
110 extern int verify_signature(const struct key *,
111                             const struct public_key_signature *);
112 
113 #if IS_REACHABLE(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE)
114 int public_key_verify_signature(const struct public_key *pkey,
115                                 const struct public_key_signature *sig);
116 #else
117 static inline
118 int public_key_verify_signature(const struct public_key *pkey,
119                                 const struct public_key_signature *sig)
120 {
121         return -EINVAL;
122 }
123 #endif
124 
125 #endif /* _LINUX_PUBLIC_KEY_H */
126 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php