A cipher is a code translating information into a less recognizable form, with the goal of limiting the set of systems or individuals capable of receiving the original data when given the enciphered representation.

learn more… | top users | synonyms

2
votes
1answer
252 views

SSLHandshakeException: Received fatal alert: handshake_failure when setting ciphers on tomcat 7 server

I have a Tomcat7 web-server which I tried to configure to accept secure connections by adding this connector to the server.xml file: <Connector SSLEnabled="true" acceptCount="100" ...
0
votes
3answers
3k views

Cipher pad block corrupted on Gingerbread

I believe this is a snippet from androidsnippets.org - why this isn't funcioning on Android 2.3? How to fix it? Error 03-05 23:19:17.479: WARN/System.err(3598): javax.crypto.BadPaddingException: pad ...
3
votes
2answers
944 views

Is it possible to find key to decrypt ciphertext by having the original plain text?

I have plaintext P and ciphertext C, is it possible to find K key, by which P was encrypted. AES is used to encrypt.
1
vote
2answers
925 views

Android Cipher encrypt/decrypt

I'm using cipher to encrypt and decrypt messages: public String encrypt(String string) throws InvalidKeyException, IllegalBlockSizeException, BadPaddingException, UnsupportedEncodingException { ...
6
votes
3answers
1k views

substitution cipher with different alphabet length

I would like to implement a simple substitution cipher to mask private ids in URLs. I know how my IDs will look like (combination of uppercase ASCII letters, digits and underscore), and they will be ...
1
vote
2answers
1k views

Java: Cipher package (encrypt and decrypt). invalid key error

i am doing a class with static methods to encrypt and decrypt a message using javax.crypto. I have 2 static methods that use ecipher and dcipher in order to do what they are supossed to do i need to ...
8
votes
4answers
5k views

Good list of weak cipher suites for JAVA

I'm running a server that requires a blacklist of weak cipher suites. So which of the following are weak? http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider ...
11
votes
5answers
3k views

badPaddingException on some call of the doFinal. Not all. Same input

I use a javax.crypto.cipher for encrypt and decrypt some data. It's working well. But sometimes, the decryption faill with a badPaddingException. If i compare a succefull call with a failling call, ...
4
votes
10answers
784 views

Code Golf - Word Scrambler

Please answer with the shortest possible source code for a program that converts an arbitrary plaintext to its corresponding ciphertext, following the sample input and output I have given below. ...
3
votes
3answers
10k views

Java using AES 256 and 128 Symmetric-key encryption

I am new in cipher technology. I found this code to do Symmetric Encryption. byte[] key = //... secret sequence of bytes byte[] dataToSend = ... Cipher c = Cipher.getInstance("AES"); SecretKeySpec k ...
18
votes
3answers
2k views

Is Cipher thread-safe?

Quite simply, can one instance of javax.crypto.Cipher (e.g. Cipher.getInstance("RSA")) be used from multiple threads, or do I need to stick multiple of them in a ThreadLocal (in my case)?
2
votes
2answers
1k views

Javascript asymmetric encryption and authentication

Some of the guys here are developing an application which incorporates some 'secure areas' accessible by logging in. In the past, the login form and subsequent 'secure' pages were all plain text ...
6
votes
1answer
631 views

Characteristics of an Initialization Vector

I'm by no means a cryptography expert, I have been reading a few questions around Stack Overflow and on Wikipedia but nothing is really 'clear cut' in terms of defining an IV and it's usage. Points I ...
3
votes
2answers
798 views

How can I force a CipherOutputStream to finish encrypting but leave the underlying stream open?

I have a CipherOutputStream backed by another OutputStream. After I have finished writing all the data I need encrypted to the CipherOutputStream, I need to append some unencrypted data. The ...
0
votes
3answers
239 views

Rijndael Cipher error in c# windows form

I am currently interested in furthering my programming skills in encryption and decryption and found a number of examples for the Rijndael cipher. I start to program my own in c#, i click my encrypt ...
3
votes
1answer
6k views

How to use CipherOutputStream correctly to encrypt and decrypt log created with log4j (RollingFileAppender)

I have a problem in encrypting/decrypting log file generated by log4j's RollingFileAppender. For the encryption I have tried to extend the RollingFileAppender, just call it ...
3
votes
2answers
6k views

Java “no cipher suites in common” issue when trying to securely connect to server

I have an issue when a client (not mine) connects to my server securely. It seems that the connection is being refused on the basis of mismatching ciphers, but I have verified that the server indeed ...
3
votes
1answer
12k views

How to calculate the inverse key matrix in Hill Cipher algorithm?

I am finding it very hard to understand the way the inverse of the matrix is calculated in the Hill Cipher algorithm. I get the idea of it all being done in modulo arithmetic, but somehow things are ...
2
votes
1answer
954 views

Encryption code in Java

I was trying to do a Vigenere cipher program in java, and I encountered some problem with the encryption/decryption part of the code. I know how I should go about approaching the ...
2
votes
1answer
3k views

Java AES Decrypting problem

I have been tasked with decrypting a file in Java that has been encrypted using the following criteria: AES encryption algorithm with 128-bit key, ECB mode and PKCS7 padding. The encrypted file ...
2
votes
1answer
1k views

Cipher Text Stealing Algorithms - Which one is correct?

There are two algorithms presented in the web. In both the algorithms, the first part is the same... 1. Pad the last partial plaintext block with 0. 2. Encrypt the whole padded plaintext ...
1
vote
1answer
364 views

file encryption and decryption c# Rijndael cipher

I can encrypt a text file that is located on my desktop using the following code. private void btnEncrypt_Click(object sender, EventArgs e) { //EncryptFile(); try { ...
1
vote
2answers
2k views

CakePHP Security::cipher decrypt not working

I am trying to decrypt a hashed string using Security::cipher($strHashedPassword, Configure::read('Security.salt')); doesn't seem to be giving the desired result. Does anyone have any experience ...
0
votes
2answers
93 views

Writing A Cipher Program

Write a program (a filter) that reads a stream of ASCII from standard input and sends characters to standard output. The program discards all characters other than letters. Any lowercase letter is ...
0
votes
1answer
94 views

Loading Encrypted JarFile Via URLCassloader

I've been writing a little system to dynamically load AES encrypted jar files. My code: public static void main(String args[]) throws Exception { String jar = "http://site.com/api/rsc/test.jar"; ...
0
votes
2answers
3k views

How do I get javax.crypto classes such as javax.crypto.Cipher to work on a servlet with jboss?

My application validates a license file in order for it to work. It does this by calling javax.crypto.Cipher.getInstance("DES","SunJCE") inorder to decipher the license key file. When I run my ...
0
votes
1answer
798 views

encrypt PBEWithMD5AndDES in j2me

i'm triing to get this code to work on j2me (it is working a java program) but not yet in j2me public static String generate(String plaintext, String passphase) throws Exception { try { ...
-1
votes
3answers
136 views

how to build a cipher…help - stuck [duplicate]

I'm trying to learn cryptopgraphy, and I choose to code in Python. I need to set up multiple sets to print out ciphers that will come about when I enter a value. Notice, in the following test ...
-4
votes
3answers
205 views

Python, substitution cipher [closed]

I need to write a substitution cipher for the digits 0,1,2,3,...,9 substitutes each digit in 0,1,2,3,...,9. It can be represented as a 10 digit string specifying how each digit in 0,1,2,3,...,9 is ...