Description
What's your question?
Would you please provide some instructions about how to make Botan-2.x as backend crypto library?
Additional Context
I don't need ssl and I am not farmiliar to openssl. I choose Botan as it's moderner and it's easier to use. How can I integrate jwt with Botan-2.x? By the way, for json, I use boost.
I've gotten the knowledge that jwt is trait-based that it is expected that I can plugin Botan adapter as a trait. I've read traits in jwt-cpp/traits/ and they are all customized traits for json options. Then what's should I do for this problem: to implement a trait for algorithm/crypto and integrate it with json trait or to implement a trait for both json(by boost) and crypto(by Botan) customization? Would you please provide some examples or instructions on how to customize a crypto backend?
Thank you very much.