mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package letsencrypt
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/rand"
|
|
"crypto/rsa"
|
|
"crypto/x509"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func init() {
|
|
rsaKeySizeToUse = 128 // makes tests faster
|
|
}
|
|
|
|
func TestSaveAndLoadRSAPrivateKey(t *testing.T) {
|
|
keyFile := "test.key"
|
|
defer os.Remove(keyFile)
|
|
|
|
privateKey, err := rsa.GenerateKey(rand.Reader, 128) // small key size is OK for testing
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// test save
|
|
err = saveRSAPrivateKey(privateKey, keyFile)
|
|
if err != nil {
|
|
t.Fatal("error saving private key:", err)
|
|
}
|
|
|
|
// test load
|
|
loadedKey, err := loadRSAPrivateKey(keyFile)
|
|
if err != nil {
|
|
t.Error("error loading private key:", err)
|
|
}
|
|
|
|
// very loaded key is correct
|
|
if !rsaPrivateKeysSame(privateKey, loadedKey) {
|
|
t.Error("Expected key bytes to be the same, but they weren't")
|
|
}
|
|
}
|
|
|
|
// rsaPrivateKeyBytes returns the bytes of DER-encoded key.
|
|
func rsaPrivateKeyBytes(key *rsa.PrivateKey) []byte {
|
|
return x509.MarshalPKCS1PrivateKey(key)
|
|
}
|
|
|
|
// rsaPrivateKeysSame compares the bytes of a and b and returns true if they are the same.
|
|
func rsaPrivateKeysSame(a, b *rsa.PrivateKey) bool {
|
|
return bytes.Equal(rsaPrivateKeyBytes(a), rsaPrivateKeyBytes(b))
|
|
}
|