From 15d0f2e69774a857daf4e57b70d7bba5ef2f4827 Mon Sep 17 00:00:00 2001 From: Pedro Nuno Santos Date: Mon, 19 Jun 2023 14:25:52 +0100 Subject: [PATCH] Fix secret options v4 example (it's setBuffer not setSecret) (#78) Signed-off-by: Pedro Nuno Santos --- asciidoc/modules/con_mg_changes-in-key-management.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asciidoc/modules/con_mg_changes-in-key-management.adoc b/asciidoc/modules/con_mg_changes-in-key-management.adoc index 3d219d7..ac933d8 100644 --- a/asciidoc/modules/con_mg_changes-in-key-management.adoc +++ b/asciidoc/modules/con_mg_changes-in-key-management.adoc @@ -32,7 +32,7 @@ The following example shows how methods of `PubSecKeyOptions` class should be us ---- new PubSecKeyOptions() .setAlgorithm("HS256") - .setSecretKey("password") + .setBuffer("password") ---- == Updates in public secret keys management