About 72 results
Open links in new tab
  1. Caesar Cipher Function in Python - Stack Overflow

    Jan 17, 2012 · I'm trying to create a simple Caesar Cipher function in Python that shifts letters based on input from the user and creates a final, new string at the end. The only problem is that the final cipher...

  2. c - Caesar's Cipher Code - Stack Overflow

    Dec 11, 2011 · void caesar (char cipher[], int shift) { int i = 0; (cipher[i] != '\0') { (cipher[i] >= 'A' && cipher[i]<='Z') { char newletter = cipher[i] - 'A'; newletter += shift; newletter = newletter % 26; cipher[i] …

  3. encryption - caesar shift cipher java - Stack Overflow

    Feb 6, 2015 · I'm trying to implement a basic Caesar Shift Cipher for Java to shift all the letters by 13. Here's my code so far. public static String cipher (String sentence) { String s = ""; for (int...

  4. Caesar Cipher in Javascript - Stack Overflow

    May 29, 2017 · The alternative that I'm proposing to your example is just a particular usage of a regular Caesar Cipher algorithm – a very simple form of encryption, in which each letter in the original …

  5. Java, How to implement a Shift Cipher (Caesar Cipher)

    Oct 1, 2013 · Java Shift Caesar Cipher by shift spaces. Restrictions: Only works with a positive number in the shift parameter. Only works with shift less than 26. Does a += which will bog the computer …

  6. Caesar Cipher, Shift Ciphers and Substitution Ciphers (and Frequency ...

    Jan 4, 2018 · Caesar Cipher, Shift Ciphers and Substitution Ciphers (and Frequency Attacks!) January 04, 2018 The Caesar Cipher History of the Caesar Cipher The Caesar cipher is one of the earliest …

  7. cryptography - difference between caeser cipher and a simple ...

    My question is about a Caesar cipher and a simple substitution cipher -- is there any difference? Some blogs when I search simple substitution cipher I get Caesar cipher.

  8. Perform a Caesar Cipher Shift on a given string

    Feb 6, 2020 · [Caesar Cipher] Using the Python language, have the function CaesarCipher (str,num) take the str parameter and perform a Caesar Cipher shift on it using the num parameter as the …

  9. Caesar Cipher Python - Additional Features - Stack Overflow

    Aug 3, 2013 · 0 Spaces are not the only problem that the Cesar Cipher (a.k.a. Shift Cipher) needs to deal with. Historically the characters are set to all upper case (or lower) and all spaces and all …

  10. Caesar Cipher Shift (using alphabet array) - Stack Overflow

    I am currently writing a Caesar Cipher program in C# for my assignment and I am having a problem. I am approaching this task using an array where I store the whole alphabet and I declare a shift …