pub trait RsaSignatureScheme:
Sized
+ Copy
+ Clone
+ Default
+ Display
+ Debug
+ RsaSignatureScheme { }
Expand description
An RSA signature scheme.
An RsaSignatureScheme
defines how to compute an RSA signature. The primary
detail defined by a signature scheme is how to perform padding.
RsaSignatureScheme
is implemented by RsaPss
and, if the rsa-pkcs1v15
feature is enabled, RsaPkcs1v15
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.