Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Create 4096 bit keys when using wallet-tool
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonieminen committed Jul 27, 2022
1 parent 7fe24ea commit b1f028d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/wallet_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() {

match args.command {
Command::Create => {
let rsa = Rsa::generate(2048)
let rsa = Rsa::generate(4096)
.expect("Failed to generate enough random data for the private key");

let jwk = JsonWebKey::new(Key::RSA {
Expand Down

0 comments on commit b1f028d

Please sign in to comment.