]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/rsa/rsa_saos.c
Deprecate the low level RSA functions.
[thirdparty/openssl.git] / crypto / rsa / rsa_saos.c
1 /*
2 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
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
8 */
9
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
16 #include <stdio.h>
17 #include "internal/cryptlib.h"
18 #include <openssl/bn.h>
19 #include <openssl/rsa.h>
20 #include <openssl/objects.h>
21 #include <openssl/x509.h>
22
23 int RSA_sign_ASN1_OCTET_STRING(int type,
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;
31
32 sig.type = V_ASN1_OCTET_STRING;
33 sig.length = m_len;
34 sig.data = (unsigned char *)m;
35
36 i = i2d_ASN1_OCTET_STRING(&sig, NULL);
37 j = RSA_size(rsa);
38 if (i > (j - RSA_PKCS1_PADDING_SIZE)) {
39 RSAerr(RSA_F_RSA_SIGN_ASN1_OCTET_STRING,
40 RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY);
41 return 0;
42 }
43 s = OPENSSL_malloc((unsigned int)j + 1);
44 if (s == NULL) {
45 RSAerr(RSA_F_RSA_SIGN_ASN1_OCTET_STRING, ERR_R_MALLOC_FAILURE);
46 return 0;
47 }
48 p = s;
49 i2d_ASN1_OCTET_STRING(&sig, &p);
50 i = RSA_private_encrypt(i, s, sigret, rsa, RSA_PKCS1_PADDING);
51 if (i <= 0)
52 ret = 0;
53 else
54 *siglen = i;
55
56 OPENSSL_clear_free(s, (unsigned int)j + 1);
57 return ret;
58 }
59
60 int RSA_verify_ASN1_OCTET_STRING(int dtype,
61 const unsigned char *m,
62 unsigned int m_len, unsigned char *sigbuf,
63 unsigned int siglen, RSA *rsa)
64 {
65 int i, ret = 0;
66 unsigned char *s;
67 const unsigned char *p;
68 ASN1_OCTET_STRING *sig = NULL;
69
70 if (siglen != (unsigned int)RSA_size(rsa)) {
71 RSAerr(RSA_F_RSA_VERIFY_ASN1_OCTET_STRING,
72 RSA_R_WRONG_SIGNATURE_LENGTH);
73 return 0;
74 }
75
76 s = OPENSSL_malloc((unsigned int)siglen);
77 if (s == NULL) {
78 RSAerr(RSA_F_RSA_VERIFY_ASN1_OCTET_STRING, ERR_R_MALLOC_FAILURE);
79 goto err;
80 }
81 i = RSA_public_decrypt((int)siglen, sigbuf, s, rsa, RSA_PKCS1_PADDING);
82
83 if (i <= 0)
84 goto err;
85
86 p = s;
87 sig = d2i_ASN1_OCTET_STRING(NULL, &p, (long)i);
88 if (sig == NULL)
89 goto err;
90
91 if (((unsigned int)sig->length != m_len) ||
92 (memcmp(m, sig->data, m_len) != 0)) {
93 RSAerr(RSA_F_RSA_VERIFY_ASN1_OCTET_STRING, RSA_R_BAD_SIGNATURE);
94 } else {
95 ret = 1;
96 }
97 err:
98 ASN1_OCTET_STRING_free(sig);
99 OPENSSL_clear_free(s, (unsigned int)siglen);
100 return ret;
101 }