From 3fed8cebdfce8262d965b9a0bece9ebb660c313a Mon Sep 17 00:00:00 2001 From: Conor Patrick Date: Thu, 14 Feb 2019 18:01:23 -0500 Subject: [PATCH] reduce RNG to 71 --- fido2/extensions/solo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fido2/extensions/solo.c b/fido2/extensions/solo.c index 1a86422..8951506 100644 --- a/fido2/extensions/solo.c +++ b/fido2/extensions/solo.c @@ -50,7 +50,7 @@ int16_t bridge_u2f_to_solo(uint8_t * output, uint8_t * keyh, int keylen) case WalletRng: printf1(TAG_WALLET,"SoloRng\n"); - ret = ctap_generate_rng(output, 72); + ret = ctap_generate_rng(output, 71); if (ret != 1) { printf1(TAG_WALLET,"Rng failed\n");