Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-06-29 02:25:36 +0300
committerAdam Langley <agl@google.com>2015-07-08 01:51:11 +0300
commit27dc1cd75a84baa18ff977878263dc39d6505a39 (patch)
treec9ae870123548dc4eecf7c6c94d91abfb1f73750 /crypto/rsa/rsa_asn1.c
parent74f711083dc88c7344f33f1bca7019da4e376758 (diff)
Remove RSA_OAEP_PARAMS.
It's never used. (Only used upstream as part of some CMS hooks.) Change-Id: I7c59badc3e4771d7debbef0c3e0def93dc605e7b Reviewed-on: https://boringssl-review.googlesource.com/5274 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/rsa/rsa_asn1.c')
-rw-r--r--crypto/rsa/rsa_asn1.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/crypto/rsa/rsa_asn1.c b/crypto/rsa/rsa_asn1.c
index 97f940ea..dd8d91a7 100644
--- a/crypto/rsa/rsa_asn1.c
+++ b/crypto/rsa/rsa_asn1.c
@@ -424,14 +424,6 @@ ASN1_SEQUENCE(RSA_PSS_PARAMS) = {
IMPLEMENT_ASN1_FUNCTIONS(RSA_PSS_PARAMS);
-ASN1_SEQUENCE(RSA_OAEP_PARAMS) = {
- ASN1_EXP_OPT(RSA_OAEP_PARAMS, hashFunc, X509_ALGOR, 0),
- ASN1_EXP_OPT(RSA_OAEP_PARAMS, maskGenFunc, X509_ALGOR, 1),
- ASN1_EXP_OPT(RSA_OAEP_PARAMS, pSourceFunc, X509_ALGOR, 2),
-} ASN1_SEQUENCE_END(RSA_OAEP_PARAMS);
-
-IMPLEMENT_ASN1_FUNCTIONS(RSA_OAEP_PARAMS);
-
RSA *RSAPublicKey_dup(const RSA *rsa) {
uint8_t *der;
size_t der_len;