Add support for including a public key on a Person

This commit is contained in:
Matt Baer
2018-06-24 21:08:46 -04:00
parent d16108618b
commit b5d7dbe3a3
+9
View File
@@ -32,3 +32,12 @@ func NewPerson(accountRoot string) *Person {
return &p return &p
} }
func (p *Person) AddPubKey(k []byte) {
p.Context = append(p.Context, "https://w3id.org/security/v1")
p.PublicKey = PublicKey{
ID: p.ID + "#main-key",
Owner: p.ID,
PublicKeyPEM: string(k),
}
}