164 signature value
https://w3id.org/security/v1signatureValue
Inbox
Definition
The signature value is used to express the output of the signature algorithm expressed in base-64 format.Scope Note
ActivityPub CommunityExample
The following example shows how the output of the signature algorithm can be encoded in JSON-LD:
{
"@context": [
"https://w3id.org/security/v1",
{ "foaf": "http://xmlns.com/foaf/0.1/" }
]
"@graph": {
"@id": "http://example.com/people#jane",
"@type": "foaf:Person",
"foaf:name": "Jane Doe",
"foaf:homepage": "http://example.org/jane"
},
"signature": {
"@type": "GraphSignature2012",
"creator": "http://example.com/people/john-doe#key-5",
"signatureValue": "OGQzNGVkMzVm4NTIyZTkZDYMmMzQzNmExMgoYzI43Q3ODIyOWM32NjI="
}
}