Tagged Questions

0
votes
2answers
94 views

multiplicative inverse?!?!?

Hi, I know that an affine cipher substitutes BD with SG. I need to find the encryption formula, in the form y = a x + b, where a and b are coefficients. From the information above I end up having to …
2
votes
5answers
177 views

Using a caesarian cipher on a string of text in python?

I'm trying to slowly knock out all of the intricacies of python. Basically, I'm looking for some way, in python, to take a string of characters and push them all over by 'x' characters. For …
4
votes
6answers
1k views

Beginner question about Caesar cipher in C++

To start off, I'm four weeks into a C++ course and I don't even know loops yet, so please speak baby talk? Okay, so I'm supposed to read a twelve character string (plus NULL makes thirteen) from a …
2
votes
1answer
235 views

Which Cipher Suites to enable for SSL Socket?

I'm using Java's SSLSocket to secure communications between a client and a server program. The server program also serves up HTTPS requests from web browsers. According to "Beginning Cryptography …
1
vote
2answers
372 views

Determining Letter Frequency Of Cipher Text In Python

I am trying to make a tool that finds the frequencies of letters in some type of cipher text. Lets suppose it is all lowercase a-z no numbers. The encoded message is in a txt file I am trying to …
0
votes
2answers
589 views

How can I disable weak Ciphers for Tomcat 5.5.27

Please let me know how can I disable weak Ciphers for Tomcat 5.5.27
2
votes
7answers
529 views

Which is the best encryption mechanism?

Triple DES or RC4? I have the choice to employ either one.
0
votes
1answer
132 views

keyless ciphers of ROT13/47 ilk

Do you know of any other ciphers that performs like the ROT47 family ? My major requirement is that it'd be keyless. Thanks.
0
votes
1answer
67 views

How would you design OO classes to handle cryptosystems and their keys

This a wider question than my previous one but related. I want to implement oldish crypto systems in Ruby such as ADFGVX, VIC cipher and others, mostly for fun. These cryptosystems are built on top …
1
vote
4answers
432 views

Best way to handle block ciphers in C++? (Crypto++)

Good day :) I'm pretty new to both C++ and Block Cipher encryption, and I am currently in the process of writing a decryption function for AES (16 byte seed / 16 byte blocks). All is going well, but …