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

Hello, I have an use case where I need to DER-encode ASN.1 message using greater than 30 for tag number. I noticed in some comments that "This library deliberately does...

Added OIDS from Republic of Belarus standarts (STB) https://github.com/bcrypto/bake/blob/master/spec/bake-module-v1.asn (for example, one file)

This provides a builder for CMS' `PasswordRecipientInfo` according to RFC 3211. In contrast to the `KeyTransRecipientInfoBuilder` the key-encryption algorithm must be provided by the user (who has to provide an...

I tried to abide by the ETSI policy. https://www.etsi.org/deliver/etsi_en/319400_319499/31941202/02.03.01_60/en_31941202v020301p.pdf The policy recommends to make KeyUsage bits 0, 1, (2 and/or 4) exclusive. This is meant to avoid making signing of...

I tried running the `x509-cert` test suite on my mac using `zlint` installed from Homebrew and I'm encountering the following: ``` $ zlint --version ZLint version 3.6.2 $ cargo test...

Hi. Recently I ran into this PKCS7/CMS structure which contains what seems like non-canonical signed/authenticated attributes. It was failing signature verification in Rust code and after closer look, it seems...

I'm currently in the process of writing a kerberos encoder/decoder using this DER crate. In https://www.rfc-editor.org/rfc/rfc4120#section-5.4.1 the specification is: ``` AS-REQ ::= [APPLICATION 10] KDC-REQ TGS-REQ ::= [APPLICATION 12] KDC-REQ...

Hi, while looking into the `pkcs7` crate for a CMS usecase around the Apple world I discovered that their detached signatures use the BER indefinite length encoding for some of...

Hello, I'm interested in using `x509-cert` in an environment where no heap allocation is possible. I'm still new to Rust but if I understand correctly, `x509-cert` is working well in...