Skip to content

Commit

Permalink
Increase RSA encryption key to 4096-bits
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Jan 3, 2025
1 parent e332af0 commit de23691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-enclave/enclave/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func NewServer() (*Server, error) {
random = session
}

decryptionKey, err := rsa.GenerateKey(random, 2048)
decryptionKey, err := rsa.GenerateKey(random, 4096)
if err != nil {
return nil, fmt.Errorf("failed to generate decryption key: %w", err)
}
Expand Down

0 comments on commit de23691

Please sign in to comment.