Skip to content

Commit

Permalink
fixes made
Browse files Browse the repository at this point in the history
  • Loading branch information
Thendo20 committed Jul 9, 2024
1 parent 1f66c6d commit 3a56735
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions datasafe-business/src/test/resources/config/mutable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ keys:
algo: RSA
size: 2048
sigAlgo: SHA256withRSA
# curve: NULL
# curve:
signing:
algo: RSA
size: 2048
sigAlgo: SHA256withRSA
# curve: NULL
# curve:
cms:
algo: AES256_GCM
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ KeyCreationConfig.EncryptingKeyCreationCfg toEncryptingKeyCreationCfg() {
builder.sigAlgo(sigAlgo);
}

if(null != curve) {

builder.curve(curve);
}


return builder.build();
}
Expand Down Expand Up @@ -231,9 +231,9 @@ KeyCreationConfig.SigningKeyCreationCfg toSigningKeyCreationCfg() {
builder.sigAlgo(sigAlgo);
}

if (null != curve) {

builder.curve(curve);
}


return builder.build();
}
Expand Down

0 comments on commit 3a56735

Please sign in to comment.