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:
authorAdam Langley <agl@google.com>2015-03-21 02:39:54 +0300
committerAdam Langley <agl@google.com>2015-04-01 01:26:57 +0300
commit20b64fd19da2306f535207e2d7d92608c4540487 (patch)
tree6448ad80e7537fa880886b598fe33ddfe6f5867b /crypto/rsa/internal.h
parent32ab7b0e74ca8974ee255b75ed9ed71c43700d3c (diff)
Export the PSS padding functions.
(system/keymaster is using them now.) Change-Id: I8fba501005b9318b7d3a76bf1715fb772b23c49d Reviewed-on: https://boringssl-review.googlesource.com/4092 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/rsa/internal.h')
-rw-r--r--crypto/rsa/internal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/crypto/rsa/internal.h b/crypto/rsa/internal.h
index aa3a982b..3dd4f049 100644
--- a/crypto/rsa/internal.h
+++ b/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|. */