Enum radicle_git_ext::commit::headers::Signature
source · pub enum Signature<'a> {
Pgp(Cow<'a, str>),
Ssh(Cow<'a, str>),
}
Expand description
A gpgsig
signature stored in a crate::commit::Commit
.
Variants§
Pgp(Cow<'a, str>)
A PGP signature, i.e. starts with -----BEGIN PGP SIGNATURE-----
.
Ssh(Cow<'a, str>)
A SSH signature, i.e. starts with -----BEGIN SSH SIGNATURE-----
.