]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rsa/rsa_saos.c
Convert all {NAME}err() in crypto/ to their corresponding ERR_raise() call
[thirdparty/openssl.git] / crypto / rsa / rsa_saos.c
CommitLineData
2039c421 1/*
33388b44 2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
2a7b6f39 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
2039c421
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
c5f87134
P
10/*
11 * RSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
d02b48c6 16#include <stdio.h>
b39fc560 17#include "internal/cryptlib.h"
ec577822
BM
18#include <openssl/bn.h>
19#include <openssl/rsa.h>
20#include <openssl/objects.h>
21#include <openssl/x509.h>
d02b48c6 22
29c1f061 23int RSA_sign_ASN1_OCTET_STRING(int type,
0f113f3e
MC
24 const unsigned char *m, unsigned int m_len,
25 unsigned char *sigret, unsigned int *siglen,
26 RSA *rsa)
27{
28 ASN1_OCTET_STRING sig;
29 int i, j, ret = 1;
30 unsigned char *p, *s;
d02b48c6 31
0f113f3e
MC
32 sig.type = V_ASN1_OCTET_STRING;
33 sig.length = m_len;
34 sig.data = (unsigned char *)m;
d02b48c6 35
0f113f3e
MC
36 i = i2d_ASN1_OCTET_STRING(&sig, NULL);
37 j = RSA_size(rsa);
38 if (i > (j - RSA_PKCS1_PADDING_SIZE)) {
9311d0c4 39 ERR_raise(ERR_LIB_RSA, RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY);
8686c474 40 return 0;
0f113f3e 41 }
b196e7d9 42 s = OPENSSL_malloc((unsigned int)j + 1);
0f113f3e 43 if (s == NULL) {
9311d0c4 44 ERR_raise(ERR_LIB_RSA, ERR_R_MALLOC_FAILURE);
8686c474 45 return 0;
0f113f3e
MC
46 }
47 p = s;
48 i2d_ASN1_OCTET_STRING(&sig, &p);
49 i = RSA_private_encrypt(i, s, sigret, rsa, RSA_PKCS1_PADDING);
50 if (i <= 0)
51 ret = 0;
52 else
53 *siglen = i;
d02b48c6 54
4b45c6e5 55 OPENSSL_clear_free(s, (unsigned int)j + 1);
8686c474 56 return ret;
0f113f3e 57}
d02b48c6 58
29c1f061 59int RSA_verify_ASN1_OCTET_STRING(int dtype,
0f113f3e
MC
60 const unsigned char *m,
61 unsigned int m_len, unsigned char *sigbuf,
62 unsigned int siglen, RSA *rsa)
63{
64 int i, ret = 0;
65 unsigned char *s;
66 const unsigned char *p;
67 ASN1_OCTET_STRING *sig = NULL;
d02b48c6 68
0f113f3e 69 if (siglen != (unsigned int)RSA_size(rsa)) {
9311d0c4 70 ERR_raise(ERR_LIB_RSA, RSA_R_WRONG_SIGNATURE_LENGTH);
8686c474 71 return 0;
0f113f3e 72 }
d02b48c6 73
b196e7d9 74 s = OPENSSL_malloc((unsigned int)siglen);
0f113f3e 75 if (s == NULL) {
9311d0c4 76 ERR_raise(ERR_LIB_RSA, ERR_R_MALLOC_FAILURE);
0f113f3e
MC
77 goto err;
78 }
79 i = RSA_public_decrypt((int)siglen, sigbuf, s, rsa, RSA_PKCS1_PADDING);
d02b48c6 80
0f113f3e
MC
81 if (i <= 0)
82 goto err;
d02b48c6 83
0f113f3e
MC
84 p = s;
85 sig = d2i_ASN1_OCTET_STRING(NULL, &p, (long)i);
86 if (sig == NULL)
87 goto err;
d02b48c6 88
0f113f3e
MC
89 if (((unsigned int)sig->length != m_len) ||
90 (memcmp(m, sig->data, m_len) != 0)) {
9311d0c4 91 ERR_raise(ERR_LIB_RSA, RSA_R_BAD_SIGNATURE);
90862ab4 92 } else {
0f113f3e 93 ret = 1;
90862ab4 94 }
0f113f3e 95 err:
0dfb9398 96 ASN1_OCTET_STRING_free(sig);
4b45c6e5 97 OPENSSL_clear_free(s, (unsigned int)siglen);
8686c474 98 return ret;
0f113f3e 99}