About 213,000 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. Caesar cipher using Python - Code Review Stack Exchange

    Sep 7, 2021 · I am just beginning to learn Python, this is my own take on a Caesar cipher just looking at Python docs. I would like to know how I could have made it better and how would you rate this. Is it …

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

    Dec 11, 2011 · cipher[i] += (shift - ('Z' - 'A')); Most people doing Caesar ciphers convert only the letters, and pass through punctuation, numbers, spaces, etc. unchanged. You might consider including the …

  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. decoding - Python Caesar Cipher Decoder - Stack Overflow

    May 29, 2012 · In my lesson I was tasked with creating a Caesar Cipher decoder that takes a string of input and finds the best possible string using a letter frequencies. If not sure how much sense that …

  6. Simple Caesar Cipher in Java - Stack Overflow

    0 I'm trying to make a simple Caesar cipher in java that accepts 2 arguments. One being the phrase, and the next being the shift of the letters. I'm very new to Java, and I'm still trying to understand the …

  7. Is Caesar cipher perfectly secret? - Cryptography Stack Exchange

    Nov 14, 2020 · Caesar cipher is perfectly secret only in the special case with the assumption that 26 keys are used in equal probability. Suppose that we have a plaintext of 50 characters long if each …

  8. Newest 'caesar-cipher' Questions - Stack Overflow

    Nov 15, 2024 · My Caesar Cipher code is failing when I pass in a string containing uppercase characters I wrote a Caesar Cipher encryption program in Ruby. It seemingly worked just fine when I passed in …

  9. 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 …

  10. Caesar's Cipher using python, could use a little help

    Feb 24, 2016 · Caesar's Cipher using python, could use a little help Asked 16 years, 2 months ago Modified 9 years, 9 months ago Viewed 15k times