BLOG

Latest Articles

OpenSSL: Generate ECC Certificates for Apache Server

Elliptic Curve Cryptography (ECC) is an encryption technique that provides public-key encryption similar to RSA. We can generate ECC certificates using openssl …

By admin · 9 min read · OpenSSL

10 simple ways to sort dictionary by key in Python

After Python 3.6, now dictionary can remember the order in which items are added. So we can easily sort dictionary by key using sorted() and many other modules …

By admin · 7 min read · Python