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 …
Setup & verify Mutual TLS Authentication (MTLS) with OpenSSL
With mutual TLS authentication (MTLS), not only does the service side prove its identity by exposing a certificate, but also the clients prove their identity to …
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 …
Python concatenate lists | combine & merge lists | 8 methods
In this tutorial we will explore different methods to combine lists in Python. This can also be referred as concatenating two or more lists, or merging multiple …
Python copy list - deepcopy() vs copy() with examples
The major difference between python deepcopy() and shallow copy() function is that the deepcopy() function copies the data of an object "recursively".
