Skip to content

Commit

Permalink
Added missing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
billphipps committed Oct 1, 2024
1 parent c225fb6 commit 469ba75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/wh_test_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -503,13 +503,13 @@ static int whTest_CryptoCurve25519(whClientContext* ctx, int devId, WC_RNG* rng)
WH_ERROR_PRINT("Failed to wc_curve25519_init_ex %d\n", ret);
} else {
ret = wh_Client_Curve25519MakeCacheKey(ctx, key_size,
&key_id_a, flags, sizeof(label_a), label_a);
&key_id_a, flags, label_a, sizeof(label_a));
if (ret != 0) {
WH_ERROR_PRINT("Failed to make cached key %d\n", ret);
}
if (ret == 0) {
ret = wh_Client_Curve25519MakeCacheKey(ctx, key_size,
&key_id_b, flags, sizeof(label_b), label_b);
&key_id_b, flags, label_b, sizeof(label_b));
if (ret != 0) {
WH_ERROR_PRINT("Failed to make cached key %d\n", ret);
}
Expand Down

0 comments on commit 469ba75

Please sign in to comment.