From 82b364605592a0e43ac16e5c7342e3c4b6667fb9 Mon Sep 17 00:00:00 2001 From: Jesse Posner Date: Fri, 30 Aug 2024 15:18:40 -0700 Subject: [PATCH] update rfc comment --- src/modules/frost/keygen_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/frost/keygen_impl.h b/src/modules/frost/keygen_impl.h index d49b241ae..b9ced38c5 100644 --- a/src/modules/frost/keygen_impl.h +++ b/src/modules/frost/keygen_impl.h @@ -164,7 +164,7 @@ static int secp256k1_frost_share_gen(secp256k1_frost_share *share, const unsigne int ret = 1; /* Derive share */ - /* See draft-irtf-cfrg-frost-08#appendix-C.1 */ + /* See RFC 9591, appendix C.1 */ secp256k1_scalar_set_int(&share_i, 0); if (!secp256k1_frost_compute_indexhash(&idx, id33)) { return 0;