Tagged Questions
9
votes
10answers
879 views
How do I improve breaking substitution ciphers programmically?
I have written (am writting) a program to analysis encrypted text and attempt to analysis and break it using frequency analysis. The encrypted text takes the form of each letter being substituted for ...
4
votes
4answers
3k views
AES Encript and Decript problem with Apache Base64
I have following programme for encrypts a data.
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import org.apache.commons.codec.binary.Base64;
public ...
3
votes
3answers
335 views
Are Encryption and Cipher different things?
I heard some time that encryption and cipher are not the same thing, if so, what's the difference?
3
votes
1answer
2k 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 ...
3
votes
7answers
2k views
1
vote
1answer
84 views
C Crypto Libraries Supporting HC-128/256?
I have been searching for a while for a crypto library that I can used on linux to implement HC-128/256 encryption for using on network traffic. Unfortunately, support for this seems rather rare. ...
1
vote
2answers
85 views
What Defines Cipher Grades?
I've been searching for what exactly defines different encryption "cipher grades" - such as those used in SSL and TLS, but haven't been able to find a specific resource that draws the line between ...
1
vote
2answers
110 views
What are the general ideas of decrypting a cipher?
I am trying to improve my skills in encryption and decryption, put there are too many ways to encryption, what ideas are common in this subject, are there any books that talk about that?
thanks alot.
...
1
vote
1answer
202 views
Decrypting data from a secure socket
I'm working on a server application in Java. I've successfully got past the handshake portion of the communication process, but how do I go about decrypting my input stream? Here is how I set up my ...
0
votes
1answer
102 views
Getting IllegalBlockSize when trying to encrypt too much data
Here are my constants
//Encryption fields
/** Algorithm=RSA Mode=ECB Padding=PKCS1Padding*/
public static final String ALGORITHM_MODE_PADDING = "RSA/ECB/PKCS1Padding";
/** Algorithm=RSA */
public ...
0
votes
9answers
496 views
Strongest cipher available to use with C/C++?
I am just wondering if you are supposed to write a sort of really secure application with data being transmitted over insecure networks, what kind of encryption algorithm will you use it in order to ...
0
votes
7answers
3k views
How to encrypt/decrypt a file in Java?
I am writing a Java application which can "encrypt" and consequently "decrypt" whatever binary file.
I am just a beginner in the "cryptography" area so I would like to write a very simple ...
0
votes
2answers
994 views
Decrypting a file in Java and exporting it to a file without going into infinite loops?
How do you decrypt a file in java and export it to a file without having to end up in an infinite loop if you have more than one user and password. Here is my code and at the end is my test file:
...
0
votes
1answer
392 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.