]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rsa/rsa_asn1.c
Deprecate the low level RSA functions.
[thirdparty/openssl.git] / crypto / rsa / rsa_asn1.c
CommitLineData
0f113f3e 1/*
665d899f 2 * Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
e76f935e 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
e76f935e
DSH
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
e76f935e 16#include <stdio.h>
b39fc560 17#include "internal/cryptlib.h"
9d6b1ce6 18#include <openssl/bn.h>
ff04bbe3 19#include <openssl/x509.h>
9d6b1ce6 20#include <openssl/asn1t.h>
706457b7 21#include "rsa_local.h"
e76f935e 22
665d899f
PY
23/*
24 * Override the default free and new methods,
25 * and calculate helper products for multi-prime
26 * RSA keys.
27 */
24484759 28static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
0f113f3e 29 void *exarg)
9d6b1ce6 30{
0f113f3e
MC
31 if (operation == ASN1_OP_NEW_PRE) {
32 *pval = (ASN1_VALUE *)RSA_new();
90945fa3 33 if (*pval != NULL)
0f113f3e
MC
34 return 2;
35 return 0;
36 } else if (operation == ASN1_OP_FREE_PRE) {
37 RSA_free((RSA *)*pval);
38 *pval = NULL;
39 return 2;
665d899f
PY
40 } else if (operation == ASN1_OP_D2I_POST) {
41 if (((RSA *)*pval)->version != RSA_ASN1_VERSION_MULTI) {
42 /* not a multi-prime key, skip */
43 return 1;
44 }
45 return (rsa_multip_calc_product((RSA *)*pval) == 1) ? 2 : 0;
0f113f3e
MC
46 }
47 return 1;
9d6b1ce6 48}
e76f935e 49
665d899f
PY
50/* Based on definitions in RFC 8017 appendix A.1.2 */
51ASN1_SEQUENCE(RSA_PRIME_INFO) = {
52 ASN1_SIMPLE(RSA_PRIME_INFO, r, CBIGNUM),
53 ASN1_SIMPLE(RSA_PRIME_INFO, d, CBIGNUM),
54 ASN1_SIMPLE(RSA_PRIME_INFO, t, CBIGNUM),
55} ASN1_SEQUENCE_END(RSA_PRIME_INFO)
56
9d6b1ce6 57ASN1_SEQUENCE_cb(RSAPrivateKey, rsa_cb) = {
9612e157 58 ASN1_EMBED(RSA, version, INT32),
0f113f3e
MC
59 ASN1_SIMPLE(RSA, n, BIGNUM),
60 ASN1_SIMPLE(RSA, e, BIGNUM),
74924dcb
RS
61 ASN1_SIMPLE(RSA, d, CBIGNUM),
62 ASN1_SIMPLE(RSA, p, CBIGNUM),
63 ASN1_SIMPLE(RSA, q, CBIGNUM),
64 ASN1_SIMPLE(RSA, dmp1, CBIGNUM),
65 ASN1_SIMPLE(RSA, dmq1, CBIGNUM),
665d899f
PY
66 ASN1_SIMPLE(RSA, iqmp, CBIGNUM),
67 ASN1_SEQUENCE_OF_OPT(RSA, prime_infos, RSA_PRIME_INFO)
d339187b 68} ASN1_SEQUENCE_END_cb(RSA, RSAPrivateKey)
e76f935e 69
e76f935e 70
9d6b1ce6 71ASN1_SEQUENCE_cb(RSAPublicKey, rsa_cb) = {
0f113f3e
MC
72 ASN1_SIMPLE(RSA, n, BIGNUM),
73 ASN1_SIMPLE(RSA, e, BIGNUM),
d339187b 74} ASN1_SEQUENCE_END_cb(RSA, RSAPublicKey)
e76f935e 75
6745a1ff
DSH
76/* Free up maskHash */
77static int rsa_pss_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
78 void *exarg)
79{
80 if (operation == ASN1_OP_FREE_PRE) {
81 RSA_PSS_PARAMS *pss = (RSA_PSS_PARAMS *)*pval;
82 X509_ALGOR_free(pss->maskHash);
83 }
84 return 1;
85}
86
87ASN1_SEQUENCE_cb(RSA_PSS_PARAMS, rsa_pss_cb) = {
0f113f3e
MC
88 ASN1_EXP_OPT(RSA_PSS_PARAMS, hashAlgorithm, X509_ALGOR,0),
89 ASN1_EXP_OPT(RSA_PSS_PARAMS, maskGenAlgorithm, X509_ALGOR,1),
90 ASN1_EXP_OPT(RSA_PSS_PARAMS, saltLength, ASN1_INTEGER,2),
91 ASN1_EXP_OPT(RSA_PSS_PARAMS, trailerField, ASN1_INTEGER,3)
6745a1ff 92} ASN1_SEQUENCE_END_cb(RSA_PSS_PARAMS, RSA_PSS_PARAMS)
ff04bbe3 93
63b825c9 94IMPLEMENT_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
ff04bbe3 95
6745a1ff
DSH
96/* Free up maskHash */
97static int rsa_oaep_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
98 void *exarg)
99{
100 if (operation == ASN1_OP_FREE_PRE) {
101 RSA_OAEP_PARAMS *oaep = (RSA_OAEP_PARAMS *)*pval;
102 X509_ALGOR_free(oaep->maskHash);
103 }
104 return 1;
105}
106
107ASN1_SEQUENCE_cb(RSA_OAEP_PARAMS, rsa_oaep_cb) = {
0f113f3e
MC
108 ASN1_EXP_OPT(RSA_OAEP_PARAMS, hashFunc, X509_ALGOR, 0),
109 ASN1_EXP_OPT(RSA_OAEP_PARAMS, maskGenFunc, X509_ALGOR, 1),
110 ASN1_EXP_OPT(RSA_OAEP_PARAMS, pSourceFunc, X509_ALGOR, 2),
6745a1ff 111} ASN1_SEQUENCE_END_cb(RSA_OAEP_PARAMS, RSA_OAEP_PARAMS)
0574cadf
DSH
112
113IMPLEMENT_ASN1_FUNCTIONS(RSA_OAEP_PARAMS)
114
9fdcc21f 115IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(RSA, RSAPrivateKey, RSAPrivateKey)
e76f935e 116
9fdcc21f 117IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(RSA, RSAPublicKey, RSAPublicKey)
1241126a 118
9fdcc21f 119RSA *RSAPublicKey_dup(const RSA *rsa)
0f113f3e
MC
120{
121 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPublicKey), rsa);
122}
1241126a 123
9fdcc21f 124RSA *RSAPrivateKey_dup(const RSA *rsa)
0f113f3e
MC
125{
126 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPrivateKey), rsa);
127}