formats icon indicating copy to clipboard operation
formats copied to clipboard

Cryptography-related format encoders/decoders: DER, PEM, PKCS, PKIX

Results 67 formats issues
Sort by recently updated
recently updated
newest added

If one wants to construct a certificate, he either has to go through the `EncodePublicKey::to_public_key_der()` and then parsing the resulting DER to form the SPKI or to create the SPKI...

There is some basic documentation on a per-crate level, such as https://docs.rs/pem-rfc7468/0.6.0/pem_rfc7468/. However, I haven't been able to find anything which shows how the various formats, algorithms, etc actually fit...

The offset between UTC time and TAI time isn't currently 10s, it's 37s and may change to something other than 37s in the future. The current code assumes the offset...

Hi Tony, Unless I'm mistaken, in der version 0.6, the `inner` field of a `SequenceOf` struct is not public: would it be possible to get a mutable pointer to that...

Hi there, I'm trying to use ASN1 to store a large data set (up to 200 MB or so). This in replacement of a file that is currently packed struct...

Allow building tls-codec with `no_std`. > I now see this is a bit more `std`-dependent than I realized due to the extensive use of `std::io::{Read, Write}`. _Originally posted by @tarcieri...

While usually more than one object is serialized in a byte buffer, there might be situations where you just expect one object from a byte buffer. In other words, there...

question

An interesting optimization for `no_std` platforms would be to support in-place decoders/encoders. The entire crate is already written to operate over byte slices as inputs/outputs, which should make much of...

Hello, I am trying to parse a CMS message ([test.pem.txt](https://github.com/user-attachments/files/16370340/test.pem.txt), remove the .txt) - please bear with me as I'm not an expert on this. I've written code as follows:...

closes #1381 This PR implements two things: - Allow the use of tag numbers >30. In the der representation they are stored in the long form as multiple bytes. -...