MIPS: eBPF: Fix icache flush end address
[linux/fpc-iii.git] / crypto / asymmetric_keys / signature.c
blobad95a58c664275a9d561548fa79e6a027a74db0c
1 /* Signature verification with an asymmetric key
3 * See Documentation/crypto/asymmetric-keys.txt
5 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
6 * Written by David Howells (dhowells@redhat.com)
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 #define pr_fmt(fmt) "SIG: "fmt
15 #include <keys/asymmetric-subtype.h>
16 #include <linux/export.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/keyctl.h>
20 #include <crypto/public_key.h>
21 #include <keys/user-type.h>
22 #include "asymmetric_keys.h"
25 * Destroy a public key signature.
27 void public_key_signature_free(struct public_key_signature *sig)
29 int i;
31 if (sig) {
32 for (i = 0; i < ARRAY_SIZE(sig->auth_ids); i++)
33 kfree(sig->auth_ids[i]);
34 kfree(sig->s);
35 kfree(sig->digest);
36 kfree(sig);
39 EXPORT_SYMBOL_GPL(public_key_signature_free);
41 /**
42 * query_asymmetric_key - Get information about an aymmetric key.
43 * @params: Various parameters.
44 * @info: Where to put the information.
46 int query_asymmetric_key(const struct kernel_pkey_params *params,
47 struct kernel_pkey_query *info)
49 const struct asymmetric_key_subtype *subtype;
50 struct key *key = params->key;
51 int ret;
53 pr_devel("==>%s()\n", __func__);
55 if (key->type != &key_type_asymmetric)
56 return -EINVAL;
57 subtype = asymmetric_key_subtype(key);
58 if (!subtype ||
59 !key->payload.data[0])
60 return -EINVAL;
61 if (!subtype->query)
62 return -ENOTSUPP;
64 ret = subtype->query(params, info);
66 pr_devel("<==%s() = %d\n", __func__, ret);
67 return ret;
69 EXPORT_SYMBOL_GPL(query_asymmetric_key);
71 /**
72 * encrypt_blob - Encrypt data using an asymmetric key
73 * @params: Various parameters
74 * @data: Data blob to be encrypted, length params->data_len
75 * @enc: Encrypted data buffer, length params->enc_len
77 * Encrypt the specified data blob using the private key specified by
78 * params->key. The encrypted data is wrapped in an encoding if
79 * params->encoding is specified (eg. "pkcs1").
81 * Returns the length of the data placed in the encrypted data buffer or an
82 * error.
84 int encrypt_blob(struct kernel_pkey_params *params,
85 const void *data, void *enc)
87 params->op = kernel_pkey_encrypt;
88 return asymmetric_key_eds_op(params, data, enc);
90 EXPORT_SYMBOL_GPL(encrypt_blob);
92 /**
93 * decrypt_blob - Decrypt data using an asymmetric key
94 * @params: Various parameters
95 * @enc: Encrypted data to be decrypted, length params->enc_len
96 * @data: Decrypted data buffer, length params->data_len
98 * Decrypt the specified data blob using the private key specified by
99 * params->key. The decrypted data is wrapped in an encoding if
100 * params->encoding is specified (eg. "pkcs1").
102 * Returns the length of the data placed in the decrypted data buffer or an
103 * error.
105 int decrypt_blob(struct kernel_pkey_params *params,
106 const void *enc, void *data)
108 params->op = kernel_pkey_decrypt;
109 return asymmetric_key_eds_op(params, enc, data);
111 EXPORT_SYMBOL_GPL(decrypt_blob);
114 * create_signature - Sign some data using an asymmetric key
115 * @params: Various parameters
116 * @data: Data blob to be signed, length params->data_len
117 * @enc: Signature buffer, length params->enc_len
119 * Sign the specified data blob using the private key specified by params->key.
120 * The signature is wrapped in an encoding if params->encoding is specified
121 * (eg. "pkcs1"). If the encoding needs to know the digest type, this can be
122 * passed through params->hash_algo (eg. "sha1").
124 * Returns the length of the data placed in the signature buffer or an error.
126 int create_signature(struct kernel_pkey_params *params,
127 const void *data, void *enc)
129 params->op = kernel_pkey_sign;
130 return asymmetric_key_eds_op(params, data, enc);
132 EXPORT_SYMBOL_GPL(create_signature);
135 * verify_signature - Initiate the use of an asymmetric key to verify a signature
136 * @key: The asymmetric key to verify against
137 * @sig: The signature to check
139 * Returns 0 if successful or else an error.
141 int verify_signature(const struct key *key,
142 const struct public_key_signature *sig)
144 const struct asymmetric_key_subtype *subtype;
145 int ret;
147 pr_devel("==>%s()\n", __func__);
149 if (key->type != &key_type_asymmetric)
150 return -EINVAL;
151 subtype = asymmetric_key_subtype(key);
152 if (!subtype ||
153 !key->payload.data[0])
154 return -EINVAL;
155 if (!subtype->verify_signature)
156 return -ENOTSUPP;
158 ret = subtype->verify_signature(key, sig);
160 pr_devel("<==%s() = %d\n", __func__, ret);
161 return ret;
163 EXPORT_SYMBOL_GPL(verify_signature);