1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Author and Signature structs.
use crateAuthorType;
use ;
/// Free-form actor identifier (e.g. `"human"`, a provider name, or a tool
/// executor id); keys capability and approval lookups.
pub type ActorId = String;
/// Detached Ed25519 signature over a record's domain-separated canonical
/// signing form (SPEC ยง3.2). The completed signature is included in the record id. Any
/// present signature must verify or the record rejects with
/// `SignatureInvalid`.
/// Who produced a record. The id is cryptographically bound only when the
/// record is signed and the actor's keys are pinned in
/// `VerifierRules::author_keys`; otherwise it is a claim.