Tagged Questions

5
votes
3answers
118 views

Order-independent ciphers

Is there exist a ciphering approach such that encrypting and decrypting order is arbitrary? Like using two padlocks on the same lock loop. That is, if there are two keys (or keypairs) K1, K2, message ...
3
votes
7answers
2k views

Which is the best encryption mechanism?

Triple DES or RC4? I have the choice to employ either one.
2
votes
3answers
445 views

shorter php cipher than md5?

For a variety of stupid reasons, the maximum length of a given form variable that we are posting to an external server is 12 characters. I wanted to obscure that value with md5, but obviously with 12 ...
1
vote
3answers
85 views

Improving cipher's properties sanity check

I am reading about cryptography I was thinking about these properties of AES (that I use): same message = same ouput no message length secrecy possible insecurity if you know the messages (does this ...
1
vote
2answers
2k 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 ...
1
vote
4answers
1k 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 ...
0
votes
2answers
844 views

OpenSSL server cipher selection

During an SSL/TLS handshake, the client sends up a list of supported cipher suites and the server selects which one to use for the conversation. Windows has a prioritized list of cipher suites ...
0
votes
1answer
95 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
votes
2answers
321 views

Bash script frequency analysis of unique letters and repeating letter pairs how should i build this script?

Ok,first post.. So I have this assignment to decrypt cryptograms by hand,but I also wanted to automate the process a little if not all at least a few parts,so i browsed around and found some sed and ...