Dmitry Baryshkov
Dmitry Baryshkov
@trini could you please point me to the password of the IMA sample key?
@trini I've been talking about IMA key, rather than RPM_GPG key. And "SecureCore" does not work for IMA key.
My main problem is that evmctl requires one to enter unknown password when using default x509_ima.der/key.
Could you please document it somewhere?
[RFC 5754](https://www.rfc-editor.org/rfc/rfc5754) defines DSA with SHA-224 and SHA256.
I'd follow what was done for the RSA crate: turn the `Digest` into the generic type argument for the `Signer` and `Verifier` implementations: ```Rust pub struct Signature {...} impl signature::Signature...
In other words: let the caller code determine used digest algo and pass it as a generic argument.
@dignifiedquire @tarcieri I noticed a side effect of this conversion. The rpgp starts to accept large RSA keys. E.g. a diff from the `test_parse_dump_6`: ```diff @@ -110188,7 +110189,43 @@ }...
Hmm. Actually no. This is caused by the RSA crate changing max public exponent.
Updated the dependency to point to the released 0.7.0 RSA crate.