Creates a Winternitz signature for the given `secret_key` and `digits`. ## See [`Verifier::sign_digits`]
(
&self,
ps: &Parameters,
secret_key: &SecretKey,
digits: Vec<u32>,
)
| 224 | /// |
| 225 | /// [`Verifier::sign_digits`] |
| 226 | pub fn sign_digits( |
| 227 | &self, |
| 228 | ps: &Parameters, |
| 229 | secret_key: &SecretKey, |
| 230 | digits: Vec<u32>, |
| 231 | ) -> Witness { |
| 232 | VERIFIER::sign_digits(ps, secret_key, digits) |
| 233 | } |
| 234 | |
| 235 | /// Creates a Winternitz signature for the given `secret_key` and `message`. |
| 236 | /// |
nothing calls this directly
no test coverage detected