formats
formats copied to clipboard
Cryptography-related format encoders/decoders: DER, PEM, PKCS, PKIX
The latest `const-oid` prereleases support two different types for representing OIDs: `ObjectIdentifier` and `ObjectIdentifierRef`, the difference being the former is owned and the latter uses a borrowed byte slice and...
Bumps [hybrid-array](https://github.com/RustCrypto/hybrid-array) from 0.2.0-rc.9 to 0.2.0-rc.10. Commits 56c7fec v0.2.0-rc.10 (#90) f6fd208 Correct misunderstanding about bit direction for extra sizes (#89) 3df563c serde support (#88) 544f75b Cargo.toml: use shortened version form...
This is used for idevid certificates burned in hardware.
x509_cert::time::Validity used to have Copy, but because it now carries a Profile, it may lose the Copy trait This forces the profile to be copyable. Profile should not carry state...
At the moment, the `SignedDataBuilder` only supports `signature::Signer` (ecdsa / rsa pkcs1v15), it would be nice to get support for rsa PSS by adding a `build_with_rng` method (along with requirement...
As part of #1491, I needed to implement decoding for the custom extension I wrote for #1490. I encounted several problems: - I need to validate the data present inside...
The `yubikey` crate's `Certificate::generate_self_signed` now takes `subject` as a `Name`, instead of `&[RelativeDistinguishedName]`. While I could migrate to `RdnSequence(vec![...])`, that makes use of the `pub` internals that prevent `Name` from...