Skip to content

Commit

Permalink
Fix GenerateCsrCommand.
Browse files Browse the repository at this point in the history
  • Loading branch information
harrison314 committed Mar 21, 2024
1 parent d1e0b27 commit b87f0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Src/BouncyHsm.Cli/Commands/Pkcs/GenerateCsrCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public override async Task<int> ExecuteAsync(CommandContext context, GenerateCsr
await AnsiConsole.Status()
.StartAsync("Creating...", async ctx =>
{
Pkcs10Dto result = await client.Pkcs_GetPkcsObjectsAsync(settings.SlotId, new GeneratePkcs10RequestDto()
Pkcs10Dto result = await client.Pkcs_GeneratePkcs10Async(settings.SlotId, new GeneratePkcs10RequestDto()
{
PrivateKeyId = settings.PrivateKeyId,
PublicKeyId = settings.PublicKeyId,
Expand Down

0 comments on commit b87f0c6

Please sign in to comment.