summaryrefslogtreecommitdiff
path: root/crypto/rsa
diff options
context:
space:
mode:
authorDaniel Fiala <daniel@openssl.org>2022-11-30 05:59:39 +0100
committerPauli <pauli@openssl.org>2022-12-07 09:37:25 +1100
commita63fa5f711f1f97e623348656b42717d6904ee3e (patch)
tree101fe7234acdff2e2e14030ece1351a5ffe395c5 /crypto/rsa
parentd3db25f568087bc9dc89b6720f0b4213cd5585c3 (diff)
downloadopenssl-new-a63fa5f711f1f97e623348656b42717d6904ee3e.tar.gz
Replace "a RSA" with "an RSA"
Fixes openssl#19771 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19787)
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/rsa_mp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rsa/rsa_mp.c b/crypto/rsa/rsa_mp.c
index 45e2280944..cb2fb7d1e8 100644
--- a/crypto/rsa/rsa_mp.c
+++ b/crypto/rsa/rsa_mp.c
@@ -21,7 +21,7 @@ void ossl_rsa_multip_info_free_ex(RSA_PRIME_INFO *pinfo)
void ossl_rsa_multip_info_free(RSA_PRIME_INFO *pinfo)
{
- /* free a RSA_PRIME_INFO structure */
+ /* free an RSA_PRIME_INFO structure */
BN_clear_free(pinfo->r);
BN_clear_free(pinfo->d);
BN_clear_free(pinfo->t);
@@ -32,7 +32,7 @@ RSA_PRIME_INFO *ossl_rsa_multip_info_new(void)
{
RSA_PRIME_INFO *pinfo;
- /* create a RSA_PRIME_INFO structure */
+ /* create an RSA_PRIME_INFO structure */
if ((pinfo = OPENSSL_zalloc(sizeof(RSA_PRIME_INFO))) == NULL)
return NULL;
if ((pinfo->r = BN_secure_new()) == NULL)