1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:47:45 +00:00

LibCrypo: Add an ASN.1/DER pretty-printer

It's much easier to debug things when we can actually *see* them :P
This commit is contained in:
AnotherTest 2021-04-18 13:40:40 +04:30 committed by Andreas Kling
parent 65de2d236d
commit ed28008d78
2 changed files with 143 additions and 0 deletions

View file

@ -216,6 +216,8 @@ private:
Optional<Tag> m_current_tag;
};
void pretty_print(Decoder&, OutputStream&, int indent = 0);
}
template<>