RustCrypto / formats

Cryptography-related format encoders/decoders: DER, PEM, PKCS, PKIX
228 stars 121 forks source link

Guide about authenticode #1250

Open pkking opened 7 months ago

pkking commented 7 months ago

Hi, im recently working on authenticode, and i have read https://github.com/RustCrypto/formats/pull/723 and https://github.com/RustCrypto/formats/pull/813, so im just wondering if there's some guide for creating a authenticode signatrue using this library :_)

Sorry if the ping disturbed any of you @roblabla

baloo commented 7 months ago

I've made an implementation in goblin. Because goblin doesn't want to pull extra dependencies, there an external crate (goblin-signing) that brings rust-crypto hashers in.

(That second crate is still a WIP, the intention is for it to move to https://github.com/nix-community eventually)

pkking commented 7 months ago

I've made an implementation in goblin. Because goblin doesn't want to pull extra dependencies, there an external crate (goblin-signing) that brings rust-crypto hashers in.

(That second crate is still a WIP, the intention is for it to move to https://github.com/nix-community eventually)

Thanks for your reply, will take a look :)

baloo commented 6 months ago

I've put up a PR rewriting the authenticode according to the spec. https://github.com/m4b/goblin/pull/383

pkking commented 6 months ago

I've put up a PR rewriting the authenticode according to the spec. https://github.com/m4b/goblin/pull/383

cool!