Browse Source

Add support for including a public key on a Person

master
Matt Baer 5 years ago
parent
commit
b5d7dbe3a3
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      activitystreams/person.go

+ 9
- 0
activitystreams/person.go View File

@@ -32,3 +32,12 @@ func NewPerson(accountRoot string) *Person {

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),
}
}

Loading…
Cancel
Save