summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-03-05 19:55:49 -0800
committerAdam Langley <agl@google.com>2015-03-05 19:55:49 -0800
commitf4dabdd0527bd5cc09ab043ec6b0a53be190d93a (patch)
tree84181ca7ef62653dee367259d90794f0a32d6124 /src/crypto
parent1f6fdd5a306c0a08f5dcf7ef6696c2efe4839882 (diff)
downloadexternal_boringssl-f4dabdd0527bd5cc09ab043ec6b0a53be190d93a.zip
external_boringssl-f4dabdd0527bd5cc09ab043ec6b0a53be190d93a.tar.gz
external_boringssl-f4dabdd0527bd5cc09ab043ec6b0a53be190d93a.tar.bz2
Export the PSS padding functions.
system/keymaster is using them now. Change-Id: I396e7001e6edf443ed2726d68d21704c7e557748
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/rsa/internal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/crypto/rsa/internal.h b/src/crypto/rsa/internal.h
index aa3a982..3dd4f04 100644
--- a/src/crypto/rsa/internal.h
+++ b/src/crypto/rsa/internal.h
@@ -113,15 +113,6 @@ int RSA_padding_add_none(uint8_t *to, unsigned to_len, const uint8_t *from,
int RSA_padding_check_none(uint8_t *to, unsigned to_len, const uint8_t *from,
unsigned from_len);
-/* RSA_verify_PKCS1_PSS_mgf1 */
-int RSA_verify_PKCS1_PSS_mgf1(RSA *rsa, const uint8_t *mHash,
- const EVP_MD *Hash, const EVP_MD *mgf1Hash,
- const uint8_t *EM, int sLen);
-
-int RSA_padding_add_PKCS1_PSS_mgf1(RSA *rsa, uint8_t *EM, const uint8_t *mHash,
- const EVP_MD *Hash, const EVP_MD *mgf1Hash,
- int sLen);
-
/* RSA_private_transform calls either the method-specific |private_transform|
* function (if given) or the generic one. See the comment for
* |private_transform| in |rsa_meth_st|. */