summaryrefslogtreecommitdiffstats
path: root/test
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:40:43 +1100
commitf15d23e2f9ec10a0c6ccd76317c0c8aeb5378a33 (patch)
treebf7da0ee787641a9a71ad708d08c68fd79320234 /test
parent544758738dad2c0db6b236ba395905e671a252e8 (diff)
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) (cherry picked from commit a63fa5f711f1f97e623348656b42717d6904ee3e) (cherry picked from commit f3e9308fe1b692c424feaa256fbecce958cef1f4)
Diffstat (limited to 'test')
-rw-r--r--test/keymgmt_internal_test.c2
-rw-r--r--test/sslapitest.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/keymgmt_internal_test.c b/test/keymgmt_internal_test.c
index bd95d4c984..ce2e458f8c 100644
--- a/test/keymgmt_internal_test.c
+++ b/test/keymgmt_internal_test.c
@@ -227,7 +227,7 @@ static int test_pass_rsa(FIXTURE *fixture)
while (dup_pk == NULL) {
ret = 0;
km = km3;
- /* Check that we can't export an RSA key into a RSA-PSS keymanager */
+ /* Check that we can't export an RSA key into an RSA-PSS keymanager */
if (!TEST_ptr_null(provkey2 = evp_pkey_export_to_provider(pk, NULL,
&km,
NULL)))
diff --git a/test/sslapitest.c b/test/sslapitest.c
index 19adc96b73..83f1bc3fbf 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -399,7 +399,7 @@ static int test_keylog(void)
* Now we want to test that our output data was vaguely sensible. We
* do that by using strtok and confirming that we have more or less the
* data we expect. For both client and server, we expect to see one master
- * secret. The client should also see a RSA key exchange.
+ * secret. The client should also see an RSA key exchange.
*/
expected.rsa_key_exchange_count = 1;
expected.master_secret_count = 1;