164 Signatur Wert
https://w3id.org/security/v1signatureValue
Inbox
Definition
Der Signaturwert wird verwendet, um die Ausgabe des Signaturalgorithmus im Base-64-Format auszudrücken.Scope Note
ActivityPub CommunityExample
Das folgende Beispiel zeigt, wie die Ausgabe des Signaturalgorithmus in JSON-LD kodiert werden kann:
{
"@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="
}
}