signingKey property
The current signing key used to sign the request sent to the target.
The key can be used to verify the integrity and authenticity of the request
on the receiver side. The key should be treated as a secret and only known to ZITADEL and the receiver.
The signature is included in the request header X-ZITADEL-Signature
and calculated over the raw body of the request using HMAC with SHA256.
Implementation
@$pb.TagNumber(10)
$core.String get signingKey => $_getSZ(9);
Implementation
@$pb.TagNumber(10)
set signingKey($core.String value) => $_setString(9, value);