pub enum SigType {
EdDsaSha512Ed25519,
EdDsaSha512Ed25519ph,
RedDsaSha512Ed25519,
DsaSha1,
}
Variants§
EdDsaSha512Ed25519
Pubkey 32 bytes; privkey 32 bytes; hash 64 bytes; sig 64 bytes
EdDsaSha512Ed25519ph
Prehash version (double hashing, for offline use such as su3, not for use on the network) Pubkey 32 bytes; privkey 32 bytes; hash 64 bytes; sig 64 bytes
RedDsaSha512Ed25519
Blinded version of EdDSA, use for encrypted LS2 Pubkey 32 bytes; privkey 32 bytes; hash 64 bytes; sig 64 bytes
DsaSha1
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SigType
impl RefUnwindSafe for SigType
impl Send for SigType
impl Sync for SigType
impl Unpin for SigType
impl UnwindSafe for SigType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more