Best of EncryptionJanuary 2023

  1. 1
    Article
    Avatar of systemweaknessSystem Weakness·3y

    Password Cracking —Understanding basics and tools used.

    Password Cracking is the process of using an program/software to identify an unknown or forgotten password. The strength of a password is primarily determined by the number of characters the password contains. The cracking process can involve either comparing stored passwords against various wordlists or to use algorithms to generate random strings for authentication.

  2. 2
    Article
    Avatar of systemweaknessSystem Weakness·3y

    Encryption Algorithms in Python

    Encryption is crucial as it ensures that a company’s data remains private and protected from unauthorized access or breaches. Data Encryption refers to the method of transforming data, such as text, email, or messages, from a readable format to an unreadable format.

  3. 3
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How Does a VPN Work? Tutorial for Beginners

    A VPN works by routing / forwarding all your data from your laptop or phone through your VPN to the internet, rather than directly through your ISP. When you use a VPN, it encrypts your data on the client side. After the data is encrypted, it's passed through a VPN tunnel which others can’t access.

  4. 4
    Article
    Avatar of dzDZone·3y

    Using JSON Web Encryption (JWE)

    JSON Web Encryption (JWE) could be used when one needs to add sensitive information to a token that one would not want to share with other systems. In this case, the user can decode the token and get all the information from the payload. The full specification of JWE can be found in RFC7516.