Peter Garisomethingsomethingdevde.hashnode.dev·Nov 23, 2024What is Caesar's Cipher?Caesar's Cipher (Caesar's Shift Cipher) is one of the simplest and most well-known encryption techniques. Named after Julius Caesar, it works by shifting each letter in the plaintext by a fixed number of places down or up the alphabet. For example, w...Go Language
J3bitokjebitok.hashnode.dev·Oct 27, 2024Cryptography: Cryptography Basics (TryHackMe)In this article, I will write a write-up for Cryptography Basics that covers the Importance of Cryptography, Plaintext to Ciphertext, Historical Ciphers, Types of Encryption and Basic Math in cryptography and symmetric encryption. What is the standa...Cryptography
Sammith S Bharadwajsammith.hashnode.dev·Mar 17, 2024TIL but its from tweets(Luhn, caesar, vigenere cipher)So I this tweet early morning and was intrigued by this tweet. Had no idea what a Lugn algorithm and vigenere cipher was and had forgotten about caesar cipher. Its as good as a day to start learning as any other day, so I decided to code these things...Python 3
K Koyalbinarybelle.hashnode.dev·Nov 29, 2023🔑Cryptography and 🌐Network 🛡️Security | Unit 1🥸Introduction to Computer Security Concepts Computer security refers to measures and controls that ensure the confidentiality, integrity, and availability of the information processed and stored by the computer. This includes everything from prote...1 like·73 readshillcipher
Stackzerostackzero.hashnode.dev·Aug 12, 2023Substitution ciphers? An overview of the basicsSubstitution ciphers are one of the simplest and oldest methods of encryption. They involve replacing plaintext letters or characters with others in a fixed pattern to create ciphertext.They represent probably the most widely used encryption system i...Caesar Cipher
Anas Khananaskhan28.hashnode.dev·Oct 22, 2022Caesar Cipher in JavascriptA little demo Any pre-requirement? Nothing 😁 You be like Nah! I am kidding you should know the basics of HTML CSS and Javascript Let's Get Started First let's understand the caesar cipher and what it is exactly, below are the resources to learn cae...3 likes·54 readsJavaScript
Sobechi Evans-Ibesobecodes.hashnode.dev·Sep 24, 2022How to Create a Caesars Cipher with JavaScript – Freecodecamp ProjectThe third project in Freecodecamp’s JavaScript Algorithms and Data Structures Certification tasks learners to write a Caesars Cipher program. What is a Cipher? A cipher refers to a secret or coded way of writing or transforming information to conceal...128 readsJavaScript
Favour Olumesethecodingprocess.hashnode.dev·Jun 6, 2022Creating Caesar Cipher Using PythonECX 30 Days of Code and Design Day 8 Caesar Cipher A Caesar cipher is an ancient form of encryption. It involves taking a text (a string) as input and encoding it by replacing each letter with the one n-steps next to it in the alphabet. (E.g., shifti...1.2K readsPython Console Projectspython projects