Skip to content

Commit

Permalink
Fix correct key size
Browse files Browse the repository at this point in the history
  • Loading branch information
clairernovotny authored Feb 24, 2021
1 parent c9d78a7 commit cb72bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SignService/Services/KeyVaultAdminService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public async Task<CertificateOperation> CreateCsrAsync(string vaultName, string
var policy = new CertificatePolicy("Unknown", $"CN={displayName}")
{
KeyType = CertificateKeyType.RsaHsm,
KeySize = 4092
KeySize = 4096
};

var vault = await GetVaultAsync(vaultName).ConfigureAwait(false);
Expand Down

0 comments on commit cb72bd0

Please sign in to comment.