Embedding JavaScript in a Jupyter notebook
I recently found out modern browsers include a JavaScript API for creating public/private keys for cryptography.
3 posts tagged “cryptography”.
I recently found out modern browsers include a JavaScript API for creating public/private keys for cryptography.
When comparing secrets, passwords etc it's important to use a constant-time compare function to avoid timing attacks. In Python I use , documented here. I needed an equivalent in Node.js today.
Today I was evaluating if the Python cryptography package was a sensible depedency for one of my projects.