From 9d36da16c7c03dc18dd191ef8e6960370105b9ca Mon Sep 17 00:00:00 2001 From: Egor Duda Date: Thu, 19 May 2022 12:00:28 +0300 Subject: [PATCH] More detailed description for "ed25519" option --- deploy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index 96d867a..301eea5 100755 --- a/deploy.py +++ b/deploy.py @@ -1096,7 +1096,10 @@ if __name__ == "__main__": action="append_const", const="ed25519", dest="features", - help=("Enable Ed25519 support"), + help=("Adds support for credentials that use EdDSA algorithm over " + "curve Ed25519. " + "Current implementation is not side-channel resilient due to use " + "of variable-time arithmetic for computations over secret key."), ) main_parser.set_defaults(features=["with_ctap1"])