summaryrefslogtreecommitdiffstats
path: root/challenge/c41.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c41.go')
-rw-r--r--challenge/c41.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge/c41.go b/challenge/c41.go
index 4ef983d..532f62b 100644
--- a/challenge/c41.go
+++ b/challenge/c41.go
@@ -12,7 +12,7 @@ import (
func C41() {
// Generate RSA key pair and setup paraphernalia.
- kpair, err := lib.RSAGenKey()
+ kpair, err := lib.RSAGenKey(2048)
if err != nil {
fmt.Printf("rsa gen key: %v\n", err)
return