summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2021-01-13 15:30:20 +0100
committerTomas Mraz <tmraz@fedoraproject.org>2021-01-15 10:02:36 +0100
commit0434f9841d45dee081c64ea3aba794a922787ece (patch)
tree8e14e5767bca53ee0ae74ac58d5e159979027011
parent3bc061eb0a990a95d35c462b9206bdf74905cfa2 (diff)
Correct typo in rsa_oaep.c
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13861)
-rw-r--r--crypto/rsa/rsa_oaep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_oaep.c b/crypto/rsa/rsa_oaep.c
index f47369a1af..66f2ae40c2 100644
--- a/crypto/rsa/rsa_oaep.c
+++ b/crypto/rsa/rsa_oaep.c
@@ -45,7 +45,7 @@ int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen,
}
/*
- * Perform ihe padding as per NIST 800-56B 7.2.2.3
+ * Perform the padding as per NIST 800-56B 7.2.2.3
* from (K) is the key material.
* param (A) is the additional input.
* Step numbers are included here but not in the constant time inverse below