Rust Crypto Challenges – Preparation

Summary

This is a series of articles for Rust languages to play with crypto challenges. I spent few weeks to get familiar with the languages, setup the project structures and tackle the first the set of Crypto Challenges(Goto here if you are interested in). In this session, we are setting up the project structure. Now, let get right into it.

Project structures

Continue reading

Tools you need for API Design

  • jwt.io – JWT code decode and encode

      URL: http://jwt.io

      The OAuth jwt tokens can be easily encoded and decoded using this tool.

  • devutilsonline – XML&Base64 decode and encode.
  • URL: https://devutilsonline.com
    It is surprising that no matter how ugly the xml has been encoded, like ASCII encoded, Based 64 encoded, this tool will decode the xml and display it beautifully.
  • codebeatify – XML to JSON
  • URL: http://codebeautify.org
    This tool can parse the xml into standard tree view and convert the XML to JSON payload.