]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/u-boot/rsa.h
lib: rsa: function to verify a signature against a hash
[thirdparty/u-boot.git] / include / u-boot / rsa.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
19c402af
SG
2/*
3 * Copyright (c) 2013, Google Inc.
4 *
5 * (C) Copyright 2008 Semihalf
6 *
7 * (C) Copyright 2000-2006
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
19c402af
SG
9 */
10
11#ifndef _RSA_H
12#define _RSA_H
13
14#include <errno.h>
15#include <image.h>
16
646257d1
HS
17/**
18 * struct rsa_public_key - holder for a public key
19 *
20 * An RSA public key consists of a modulus (typically called N), the inverse
21 * and R^2, where R is 2^(# key bits).
22 */
23
24struct rsa_public_key {
25 uint len; /* len of modulus[] in number of uint32_t */
26 uint32_t n0inv; /* -1 / modulus[0] mod 2^32 */
27 uint32_t *modulus; /* modulus as little endian array */
28 uint32_t *rr; /* R^2 as little endian array */
e0f2f155 29 uint64_t exponent; /* public exponent */
646257d1
HS
30};
31
73223f0e
SG
32struct image_sign_info;
33
19c402af
SG
34#if IMAGE_ENABLE_SIGN
35/**
36 * sign() - calculate and return signature for given input data
37 *
38 * @info: Specifies key and FIT information
39 * @data: Pointer to the input data
40 * @data_len: Data length
41 * @sigp: Set to an allocated buffer holding the signature
42 * @sig_len: Set to length of the calculated hash
43 *
44 * This computes input data signature according to selected algorithm.
45 * Resulting signature value is placed in an allocated buffer, the
46 * pointer is returned as *sigp. The length of the calculated
47 * signature is returned via the sig_len pointer argument. The caller
48 * should free *sigp.
49 *
50 * @return: 0, on success, -ve on error
51 */
52int rsa_sign(struct image_sign_info *info,
53 const struct image_region region[],
54 int region_count, uint8_t **sigp, uint *sig_len);
55
56/**
57 * add_verify_data() - Add verification information to FDT
58 *
59 * Add public key information to the FDT node, suitable for
60 * verification at run-time. The information added depends on the
61 * algorithm being used.
62 *
63 * @info: Specifies key and FIT information
64 * @keydest: Destination FDT blob for public key data
4f427a42
SG
65 * @return: 0, on success, -ENOSPC if the keydest FDT blob ran out of space,
66 other -ve value on error
19c402af
SG
67*/
68int rsa_add_verify_data(struct image_sign_info *info, void *keydest);
69#else
70static inline int rsa_sign(struct image_sign_info *info,
71 const struct image_region region[], int region_count,
72 uint8_t **sigp, uint *sig_len)
73{
74 return -ENXIO;
75}
76
77static inline int rsa_add_verify_data(struct image_sign_info *info,
78 void *keydest)
79{
80 return -ENXIO;
81}
82#endif
83
84#if IMAGE_ENABLE_VERIFY
c89b41b4
HS
85/**
86 * rsa_verify_hash() - Verify a signature against a hash
87 *
88 * Verify a RSA PKCS1.5 signature against an expected hash.
89 *
90 * @info: Specifies key and FIT information
91 * @hash: Hash according to algorithm specified in @info
92 * @sig: Signature
93 * @sig_len: Number of bytes in signature
94 * @return 0 if verified, -ve on error
95 */
96int rsa_verify_hash(struct image_sign_info *info,
97 const uint8_t *hash, uint8_t *sig, uint sig_len);
98
19c402af
SG
99/**
100 * rsa_verify() - Verify a signature against some data
101 *
102 * Verify a RSA PKCS1.5 signature against an expected hash.
103 *
104 * @info: Specifies key and FIT information
105 * @data: Pointer to the input data
106 * @data_len: Data length
107 * @sig: Signature
108 * @sig_len: Number of bytes in signature
109 * @return 0 if verified, -ve on error
110 */
111int rsa_verify(struct image_sign_info *info,
112 const struct image_region region[], int region_count,
113 uint8_t *sig, uint sig_len);
20031567
PR
114
115int padding_pkcs_15_verify(struct image_sign_info *info,
116 uint8_t *msg, int msg_len,
117 const uint8_t *hash, int hash_len);
061daa0b
PR
118
119#ifdef CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT
120int padding_pss_verify(struct image_sign_info *info,
121 uint8_t *msg, int msg_len,
122 const uint8_t *hash, int hash_len);
123#endif /* CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT */
19c402af 124#else
c89b41b4
HS
125static inline int rsa_verify_hash(struct image_sign_info *info,
126 const uint8_t *hash,
127 uint8_t *sig, uint sig_len)
128{
129 return -ENXIO;
130}
131
19c402af
SG
132static inline int rsa_verify(struct image_sign_info *info,
133 const struct image_region region[], int region_count,
134 uint8_t *sig, uint sig_len)
135{
136 return -ENXIO;
137}
20031567
PR
138
139static inline int padding_pkcs_15_verify(struct image_sign_info *info,
140 uint8_t *msg, int msg_len,
141 const uint8_t *hash, int hash_len)
142{
143 return -ENXIO;
144}
061daa0b
PR
145
146#ifdef CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT
147static inline int padding_pss_verify(struct image_sign_info *info,
148 uint8_t *msg, int msg_len,
149 const uint8_t *hash, int hash_len)
150{
151 return -ENXIO;
152}
153#endif /* CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT */
19c402af
SG
154#endif
155
20031567
PR
156#define RSA_DEFAULT_PADDING_NAME "pkcs-1.5"
157
db1b5f3d
HS
158#define RSA2048_BYTES (2048 / 8)
159#define RSA4096_BYTES (4096 / 8)
160
161/* This is the minimum/maximum key size we support, in bits */
162#define RSA_MIN_KEY_BITS 2048
163#define RSA_MAX_KEY_BITS 4096
164
165/* This is the maximum signature length that we support, in bits */
166#define RSA_MAX_SIG_BITS 4096
167
19c402af 168#endif