signature property
The signature, a 97-byte array encoded in base64. The first byte indicates the signature scheme (currently set to 0x00, as we only support ED25519). The following 64 bytes represent the raw ED25519 signature, while the next 32 bytes contain the public key.
Implementation
@$pb.TagNumber(1)
$core.String get signature => $_getSZ(0);
Implementation
@$pb.TagNumber(1)
set signature($core.String v) {
$_setString(0, v);
}