Skip to content

Commit

Permalink
fix: Fixed the generation of key name: it's no more prefixed with 'au…
Browse files Browse the repository at this point in the history
…th'. (#108)
  • Loading branch information
antoniotarricone authored Jun 14, 2024
1 parent 026cc7f commit 1b717bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static String[] myKid2KeyNameVersion(String myKid) {
* @return
*/
public static String generateKeyName() {
return DOMAIN_VALUE + UUID.randomUUID().toString().replace("-", "");
return UUID.randomUUID().toString().replace("-", "");
}

/**
Expand Down

0 comments on commit 1b717bd

Please sign in to comment.