Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create pub/priv keypair for federation #17071

Merged
merged 13 commits into from
Sep 28, 2021
44 changes: 43 additions & 1 deletion modules/activitypub/keypair_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ package activitypub
import (
"regexp"
"testing"
"encoding/pem"
"crypto/x509"
"crypto"
"crypto/sha256"
"crypto/rsa"
"crypto/rand"

"github.com/stretchr/testify/assert"
)

func TestKeygen(t *testing.T) {
priv, pub, err := GenerateKeyPair()

assert.NoError(t, err)

assert.NotEmpty(t, priv)
Expand All @@ -23,3 +28,40 @@ func TestKeygen(t *testing.T) {
assert.Regexp(t, regexp.MustCompile("^-----BEGIN PUBLIC KEY-----.*"), pub)
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved

}

func TestSignUsingKeys(t *testing.T) {
priv, pub, err := GenerateKeyPair()
assert.NoError(t, err)

privPem, _ := pem.Decode([]byte(priv))
if privPem == nil || privPem.Type != "RSA PRIVATE KEY" {
t.Fatal("key is wrong type")
}

privParsed, err := x509.ParsePKCS1PrivateKey(privPem.Bytes)
if err != nil {
assert.NoError(t, err)
}
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved

pubPem, _ := pem.Decode([]byte(pub))
if pubPem == nil || pubPem.Type != "PUBLIC KEY" {
t.Fatal("key failed to decode")
}

pubParsed, err := x509.ParsePKIXPublicKey(pubPem.Bytes)
if err != nil {
assert.NoError(t, err)
}
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved

// Sign
msg := "activity pub is great!"
h := sha256.New()
h.Write([]byte(msg))
d := h.Sum(nil)
sig, err := rsa.SignPKCS1v15(rand.Reader, privParsed, crypto.SHA256, d)
assert.NoError(t, err)

// Verify
err = rsa.VerifyPKCS1v15(pubParsed.(*rsa.PublicKey), crypto.SHA256, d, sig)
assert.NoError(t, err)
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved
}