Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 610 results for
caesar
- Page 1
Re: Caesar cipher question
Programming
Software Development
13 Years Ago
by sike.mausa
….nextLine(); if (task.equalsIgnoreCase("-d")){
Caesar
myCaesar = new
Caesar
(file); while (filescanner.hasNextLine()){ System.out.println(…} } else if (task.equalsIgnoreCase("-e")){
Caesar
myCaesar = new
Caesar
(file); while (filescanner.hasNextLine()){ System.out.println(myCaesar…
Re: Caesar cipher question
Programming
Software Development
13 Years Ago
by sike.mausa
…= new File(filename); if (task.equalsIgnoreCase("-d")){
Caesar
myDecrypt = new
Caesar
(file); Scanner dscan = null; dscan = new Scanner(file….nextLine())); } } else if (task.equalsIgnoreCase("-e")){
Caesar
myCaesar = new
Caesar
(file); Scanner dscan = null; dscan = new Scanner(file);…
Caesar Cipher
Programming
Computer Science
11 Years Ago
by strongard63
… said that this code a certain code is encoded using
Caesar
Cipher **BUT** this code is a **composed of numbers …69bc". This surprised me because as I said :" **
Caesar
Cipher does not accept numbers**" but I see a… which is composed from numbers and alphabets, is created using
Caesar
Cipher encoding??? 1)how to decrypt a code (which is…
Re: Caesar cipher question
Programming
Software Development
13 Years Ago
by sike.mausa
… System.exit(0); } if (task.equalsIgnoreCase("-d")){
Caesar
myCaesar = new
Caesar
(new File(file)); Scanner dscan = null; try{ dscan = new…(dscan.nextLine())); } } } private String[] key = new String[26]; public
Caesar
(File file){ Scanner kscan = null; try{ kscan = new Scanner(file…
Re: Caesar Cipher
Programming
Computer Science
11 Years Ago
by strongard63
… , please, how? with examples and details how to decrypt extended
Caesar
Cipher with a key that is for example between( 26…
Caesar Cipher. Need Help Please.
Programming
Software Development
13 Years Ago
by GatorProgrammer
… this is about problems I have having with writing my
Caesar
Cipher. I know how they work but I don't… why I just don't read the hundreds of other
Caesar
Cipher posts, and I have. They aren't helping me…
Caesar cipher question
Programming
Software Development
13 Years Ago
by sike.mausa
Hello. I'm attempting to start a
Caesar
cipher program and can't get the program to display …; import java.io.FileNotFoundException; import java.util.Scanner; public class
Caesar
{ private String[] key = new String[26]; public static void main…
Caesar Ciper in C Need help FAST!!
Programming
Software Development
11 Years Ago
by cocopium
Need help with
Caesar
Cipher. Usually I am aboe to figure the things out ….... but this one escapes me. I need to create a
Caesar
Cipher. **It must have an array. ** **I must be very…
Caesar cipher in python
Programming
Software Development
8 Years Ago
by Rajan_8
I am doing a mini project on
Caesar
cipher, I found one program but can't understand the …29th line "key = -key". Please help me. #
Caesar
Cipher MAX_KEY_SIZE = 26 def getMode(): print('Do you wish to…
Re: Caesar Cipher. Need Help Please.
Programming
Software Development
13 Years Ago
by Satyrn
… for the letter shifting, add 13 to the char (assuming
caesar
cipher is the same as ROT13) and then modulo with…
Re: Caesar cipher question
Programming
Software Development
13 Years Ago
by JamesCherrill
Line 36 is a one parameter constructor public
Caesar
(File file){... so it's right not to code an …
Caesar Cipher Problems
Programming
Software Development
15 Years Ago
by charmed14
So, I'm trying to create a
Caesar
Cipher using C++. It's supposed to be able to …
Caesar Cipher [C++]
Programming
Software Development
12 Years Ago
by lmsmi1
… FOR loop. Now my question is, is there a working
Caesar
cipher I can refer back to when I get stuck…
Caesar Cipher
Programming
Software Development
12 Years Ago
by alice.ng.3344
I am doing code for
CAESAR
CIPHER. I need to built a histogram or frequency distribution …
caesar cipher!
Programming
Software Development
10 Years Ago
by ram_10
Hello, I'm trying to script a
Caesar
cipher with the key, I find this exercise too much …
caesar cipher in java source code complet
Programming
Software Development
8 Years Ago
by djabri
i need code source
caesar
cipher in java source code complet
Re: Caesar Cipher not working but no errors(if - else problem)
Programming
Software Development
12 Years Ago
by 111100/11000
…Compiling: main.cpp C:\Dev-Cpp\PROJECTS\Encryption machines\
Caesar
Cipher\
Caesar
Cipher\main.cpp: In function `int main()': …C:\Dev-Cpp\PROJECTS\Encryption machines\
Caesar
Cipher\
Caesar
Cipher\main.cpp:19: error: no match for…== abc[0]' C:\Dev-Cpp\PROJECTS\Encryption machines\
Caesar
Cipher\
Caesar
Cipher\main.cpp:19: error: no match for …
Re: Caesar Cipher Code
Programming
Software Development
14 Years Ago
by chiwawa10
… text as 'char' using ASCII code. For example, in the
Caesar
cipher, B (66) would be E (69) after encryption. Its…
public/private key encryption and caesar cipher
Programming
Web Development
15 Years Ago
by icestorm
…to allow access or does it affect the
caesar
cipher as well? because after looking at … idea. I have seen many examples of
caesar
cipher encryption/decryption but none of them use… the key (randomised one) along with the
caesar
cipher but am not sure how to implement …to go ahead or would it affect the
caesar
cipher which I would have shifting by …
New to java, Caesar Cipher question.
Programming
Software Development
16 Years Ago
by steven.doyle2
…// result of conversion int key; // key for
Caesar
cipher int menuSelection; // user's menu selection System.…out.println("CS 160, Program 2:
Caesar
Cipher"); System.out.println("--------------------------------\n"…
C++ Caesar cipher
Programming
Software Development
15 Years Ago
by sandorlev
…(index, 1); else spacesLeft = false; } } }; //The
Caesar
cipher class
Caesar
: SLEncryptCipher { public: std::string text;
Caesar
(std::string text) { this->text = text…; #include "cipher.h" using namespace std; int main() {
Caesar
test("LeVEnte A nEVeM"); cout << test…
Help with caesar cipher
Programming
Software Development
11 Years Ago
by michelemalta
… Alphabet: "; for(int i = 0; i < length; i++) {
Caesar
[i] = alphabet[(i + shift) % length]; cout <<…;
Caesar
[i]; My issue is that the shift value comes out …as 4, however the
caesar
array comes out identical to the alphabet array.
Re: Need help with caesar cipher
Programming
Software Development
15 Years Ago
by jghassibi
… "remainder %" operator to create a circular #
Caesar
Cipher. # CREATE ENCRYPTION CHARACTER STRING # # 1. Create…, this method allows me to create a _circular_
Caesar
#Cipher using the "remainder %" operation… letter # To affect all characters by this circular
Caesar
#Cipher method. Comment out Sections 1,2 and …
Re: Java Beginner Caesar Cipher
Programming
Software Development
11 Years Ago
by stultuske
... I don't really see a
Caesar
Cypher in that code ... the arguments I would expect would … text to en/decrypt.. since I didn't see a
caesar
shift in your code, I ran it here. encryption of… different from the length of the encrypted text in a
caesar
shift, so .. not sure what that is, but it's…
Re: Help with caesar cipher
Programming
Software Development
11 Years Ago
by nullptr
…U', 'V', 'W', 'X', 'Y', 'Z' }; char
Caesar
[length] = {0}; int shift = 4; cout << …0; i < length; i++) {
Caesar
[i] = alphabet[(i + shift) % length]; cout &…lt;<
Caesar
[i]; } std::cin.get(); return 0; …
Need help with caesar cipher
Programming
Software Development
18 Years Ago
by pyguy25
…I was wondering if anyone could help me with a
caesar
cipher program I am attempting to create. I was asked… to write a
caesar
cipher encoder program. Ok. No problem. This is what…(): print "This program will encode your messages using a
Caesar
Cipher" print key = input("Enter the key: &…
Java Beginner Caesar Cipher
Programming
Software Development
11 Years Ago
by eldiablo1121
…(String[] args) { CaesarCipher cipher = new CaesarCipher(); System.out.printf("
Caesar
Cipher! \n"); System.out.println("\nPlease enter message…(phrase); } } It will print out the first 2 phrases like
Caesar
Cipher and please enter text, I have it when I…
Re: Cracking Caesar Cipher
Programming
Web Development
9 Years Ago
by thirsty.soul
…text/html; charset=utf-8" /> <title>
Caesar
Cipher Manual Breaking</title> <link href="…;?do=break"> <p><strong>
Caesar
Cipher Manual Breaking</strong> <br /> &…</form> <p><a href="
Caesar
-Cipher-Encrypt.php">CaesarCipher Encrypt</a>…
Re: Help with caesar cipher
Programming
Software Development
11 Years Ago
by vmanes
I just used your code, and with shift of 4, the
Caesar
array is: efghijklmnopqrstuvwxyzabcd Just what it should be. What are you seeing as a problem?
Re: Cracking Caesar crypto with dictionary attack
Programming
Software Development
13 Years Ago
by TrustyTony
There should be break after words match at line 30. The function should actually have the
Caesar
check only, but I wanted to demonstrate the connection between the two methods. The range in
Caesar
loop should be range(1,26) as after it loops around and the function given for
Caesar
is not prepared for wrap around by modulo.
1
2
3
11
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC