Path: blob/main/contrib/bearssl/src/rsa/rsa_i31_priv.c
39483 views
/*1* Copyright (c) 2016 Thomas Pornin <[email protected]>2*3* Permission is hereby granted, free of charge, to any person obtaining4* a copy of this software and associated documentation files (the5* "Software"), to deal in the Software without restriction, including6* without limitation the rights to use, copy, modify, merge, publish,7* distribute, sublicense, and/or sell copies of the Software, and to8* permit persons to whom the Software is furnished to do so, subject to9* the following conditions:10*11* The above copyright notice and this permission notice shall be12* included in all copies or substantial portions of the Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,15* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF16* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND17* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS18* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN19* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN20* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE21* SOFTWARE.22*/2324#include "inner.h"2526#define U (2 + ((BR_MAX_RSA_FACTOR + 30) / 31))27#define TLEN (8 * U)2829/* see bearssl_rsa.h */30uint32_t31br_rsa_i31_private(unsigned char *x, const br_rsa_private_key *sk)32{33const unsigned char *p, *q;34size_t plen, qlen;35size_t fwlen;36uint32_t p0i, q0i;37size_t xlen, u;38uint32_t tmp[1 + TLEN];39long z;40uint32_t *mp, *mq, *s1, *s2, *t1, *t2, *t3;41uint32_t r;4243/*44* Compute the actual lengths of p and q, in bytes.45* These lengths are not considered secret (we cannot really hide46* them anyway in constant-time code).47*/48p = sk->p;49plen = sk->plen;50while (plen > 0 && *p == 0) {51p ++;52plen --;53}54q = sk->q;55qlen = sk->qlen;56while (qlen > 0 && *q == 0) {57q ++;58qlen --;59}6061/*62* Compute the maximum factor length, in words.63*/64z = (long)(plen > qlen ? plen : qlen) << 3;65fwlen = 1;66while (z > 0) {67z -= 31;68fwlen ++;69}7071/*72* Round up the word length to an even number.73*/74fwlen += (fwlen & 1);7576/*77* We need to fit at least 6 values in the stack buffer.78*/79if (6 * fwlen > TLEN) {80return 0;81}8283/*84* Compute modulus length (in bytes).85*/86xlen = (sk->n_bitlen + 7) >> 3;8788/*89* Decode q.90*/91mq = tmp;92br_i31_decode(mq, q, qlen);9394/*95* Decode p.96*/97t1 = mq + fwlen;98br_i31_decode(t1, p, plen);99100/*101* Compute the modulus (product of the two factors), to compare102* it with the source value. We use br_i31_mulacc(), since it's103* already used later on.104*/105t2 = mq + 2 * fwlen;106br_i31_zero(t2, mq[0]);107br_i31_mulacc(t2, mq, t1);108109/*110* We encode the modulus into bytes, to perform the comparison111* with bytes. We know that the product length, in bytes, is112* exactly xlen.113* The comparison actually computes the carry when subtracting114* the modulus from the source value; that carry must be 1 for115* a value in the correct range. We keep it in r, which is our116* accumulator for the error code.117*/118t3 = mq + 4 * fwlen;119br_i31_encode(t3, xlen, t2);120u = xlen;121r = 0;122while (u > 0) {123uint32_t wn, wx;124125u --;126wn = ((unsigned char *)t3)[u];127wx = x[u];128r = ((wx - (wn + r)) >> 8) & 1;129}130131/*132* Move the decoded p to another temporary buffer.133*/134mp = mq + 2 * fwlen;135memmove(mp, t1, fwlen * sizeof *t1);136137/*138* Compute s2 = x^dq mod q.139*/140q0i = br_i31_ninv31(mq[1]);141s2 = mq + fwlen;142br_i31_decode_reduce(s2, x, xlen, mq);143r &= br_i31_modpow_opt(s2, sk->dq, sk->dqlen, mq, q0i,144mq + 3 * fwlen, TLEN - 3 * fwlen);145146/*147* Compute s1 = x^dp mod p.148*/149p0i = br_i31_ninv31(mp[1]);150s1 = mq + 3 * fwlen;151br_i31_decode_reduce(s1, x, xlen, mp);152r &= br_i31_modpow_opt(s1, sk->dp, sk->dplen, mp, p0i,153mq + 4 * fwlen, TLEN - 4 * fwlen);154155/*156* Compute:157* h = (s1 - s2)*(1/q) mod p158* s1 is an integer modulo p, but s2 is modulo q. PKCS#1 is159* unclear about whether p may be lower than q (some existing,160* widely deployed implementations of RSA don't tolerate p < q),161* but we want to support that occurrence, so we need to use the162* reduction function.163*164* Since we use br_i31_decode_reduce() for iq (purportedly, the165* inverse of q modulo p), we also tolerate improperly large166* values for this parameter.167*/168t1 = mq + 4 * fwlen;169t2 = mq + 5 * fwlen;170br_i31_reduce(t2, s2, mp);171br_i31_add(s1, mp, br_i31_sub(s1, t2, 1));172br_i31_to_monty(s1, mp);173br_i31_decode_reduce(t1, sk->iq, sk->iqlen, mp);174br_i31_montymul(t2, s1, t1, mp, p0i);175176/*177* h is now in t2. We compute the final result:178* s = s2 + q*h179* All these operations are non-modular.180*181* We need mq, s2 and t2. We use the t3 buffer as destination.182* The buffers mp, s1 and t1 are no longer needed, so we can183* reuse them for t3. Moreover, the first step of the computation184* is to copy s2 into t3, after which s2 is not needed. Right185* now, mq is in slot 0, s2 is in slot 1, and t2 is in slot 5.186* Therefore, we have ample room for t3 by simply using s2.187*/188t3 = s2;189br_i31_mulacc(t3, mq, t2);190191/*192* Encode the result. Since we already checked the value of xlen,193* we can just use it right away.194*/195br_i31_encode(x, xlen, t3);196197/*198* The only error conditions remaining at that point are invalid199* values for p and q (even integers).200*/201return p0i & q0i & r;202}203204205