summaryrefslogtreecommitdiffstats
path: root/crypto/dsa
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2022-10-26 11:48:07 +1100
committerPauli <pauli@openssl.org>2022-11-02 08:42:46 +1100
commit5b234be4c44f5b178bc69da3d610ae1b70441873 (patch)
treef2066d96699faa345857a2f6eaa3abcec77a72dd /crypto/dsa
parentfc0bb3411bd0c6ca264f610303933d0bf4f4682c (diff)
dsa/ec: update pairwise tests to account for 140-3 IG 10.3.A additiocal comment 1
This mandates following SP 800-56A which, in 5.6.2.4, mandates a comparision against a newly calculated public key. Co-authored-by: Randall Steck <rsteck@thinqsoft.com> Co-authored-by: Mark J. Minnoch <mark@keypair.us> Co-authored-by: Steve Weymann <steve@keypair.us> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/19510)
Diffstat (limited to 'crypto/dsa')
-rw-r--r--crypto/dsa/dsa_key.c51
1 files changed, 50 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_key.c b/crypto/dsa/dsa_key.c
index 1f951a9d36..e8c8359634 100644
--- a/crypto/dsa/dsa_key.c
+++ b/crypto/dsa/dsa_key.c
@@ -59,6 +59,54 @@ err:
return ret;
}
+/*
+ * Refer: FIPS 140-3 IG 10.3.A Additional Comment 1
+ * Perform a KAT by duplicating the public key generation.
+ *
+ * NOTE: This issue requires a background understanding, provided in a separate
+ * document; the current IG 10.3.A AC1 is insufficient regarding the PCT for
+ * the key agreement scenario.
+ *
+ * Currently IG 10.3.A requires PCT in the mode of use prior to use of the
+ * key pair, citing the PCT defined in the associated standard. For key
+ * agreement, the only PCT defined in SP 800-56A is that of Section 5.6.2.4:
+ * the comparison of the original public key to a newly calculated public key.
+ */
+static int dsa_keygen_knownanswer_test(DSA *dsa, BN_CTX *ctx,
+ OSSL_CALLBACK *cb, void *cbarg)
+{
+ int len, ret = 0;
+ OSSL_SELF_TEST *st = NULL;
+ unsigned char bytes[512] = {0};
+ BIGNUM *pub_key2 = BN_new();
+
+ if (pub_key2 == NULL)
+ return 0;
+
+ st = OSSL_SELF_TEST_new(cb, cbarg);
+ if (st == NULL)
+ goto err;
+
+ OSSL_SELF_TEST_onbegin(st, OSSL_SELF_TEST_TYPE_PCT_KAT,
+ OSSL_SELF_TEST_DESC_PCT_DSA);
+
+ if (!ossl_dsa_generate_public_key(ctx, dsa, dsa->priv_key, pub_key2))
+ goto err;
+
+ if (BN_num_bytes(pub_key2) > (int)sizeof(bytes))
+ goto err;
+ len = BN_bn2bin(pub_key2, bytes);
+ OSSL_SELF_TEST_oncorrupt_byte(st, bytes);
+ if (BN_bin2bn(bytes, len, pub_key2) != NULL)
+ ret = !BN_cmp(dsa->pub_key, pub_key2);
+
+err:
+ OSSL_SELF_TEST_onend(st, ret);
+ OSSL_SELF_TEST_free(st);
+ BN_free(pub_key2);
+ return ret;
+}
+
static int dsa_keygen(DSA *dsa, int pairwise_test)
{
int ok = 0;
@@ -113,7 +161,8 @@ static int dsa_keygen(DSA *dsa, int pairwise_test)
void *cbarg = NULL;
OSSL_SELF_TEST_get_callback(dsa->libctx, &cb, &cbarg);
- ok = dsa_keygen_pairwise_test(dsa, cb, cbarg);
+ ok = dsa_keygen_pairwise_test(dsa, cb, cbarg)
+ && dsa_keygen_knownanswer_test(dsa, ctx, cb, cbarg);
if (!ok) {
ossl_set_error_state(OSSL_SELF_TEST_TYPE_PCT);
BN_free(dsa->pub_key);