SlugSecurity / ucsc-ectf-2023

UCSC's design and implementation for MITRE's eCTF 2023
MIT License
0 stars 1 forks source link

Use of Serde serialization for public keys and signatures #6

Closed eggroll-bot closed 1 year ago

eggroll-bot commented 1 year ago

We need to guarantee that our public keys and signatures in the build scripts are encoded in DER format. Relying on Serde to serialize it into a DER format is not good because that's an implementation detail.

We should replace the Serde serialization of public keys and signatures in the build scripts with the appropriate DER encoding functions.