mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
Use P384 for TestUser (privateKey) (#1009)
This commit is contained in:
parent
4d76ccb1c4
commit
4b3c532573
|
@ -2,8 +2,9 @@ package caddytls
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto/ecdsa"
|
||||
"crypto/elliptic"
|
||||
"crypto/rand"
|
||||
"crypto/rsa"
|
||||
"io"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -16,7 +17,7 @@ import (
|
|||
func TestUser(t *testing.T) {
|
||||
defer testStorage.clean()
|
||||
|
||||
privateKey, err := rsa.GenerateKey(rand.Reader, 128)
|
||||
privateKey, err := ecdsa.GenerateKey(elliptic.P384(), rand.Reader)
|
||||
if err != nil {
|
||||
t.Fatalf("Could not generate test private key: %v", err)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user