Rust wrapper: add doc comment for MAX_E_LEN

This commit is contained in:
Josh Holtrop
2026-04-22 00:23:02 -04:00
parent d5957e6247
commit 9c506896c6
@@ -196,6 +196,8 @@ impl<H: Hash, const N: usize> SignerMut<Signature<N>> for SigningKey<H, N> {
}
}
/// Maximum number of bytes that the E exponent can use. An error is returned
/// if longer exponent byte arrays are provided.
const MAX_E_LEN: usize = 8;
/// RSA PKCS#1 v1.5 verifying key.