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

0
votes
1answer
15 views

Sending Strings Encoded by a secret key over TCP stream BadPaddingException with Windows

I think I'm having a problem specific to the Windows operating system (windows 7) using the writeUTF() and readUTF() methods for sending encrypted strings over a TCP connection. The client and server ...
0
votes
0answers
10 views

Hill cipher implementation when results are not expected

I am working on some ciphers (just theory, no coding yet). Currently I am doing the hill cipher and I can use it fine. However I have came across a problem which has stumped me. Say for example I ...
-1
votes
1answer
15 views

Caesar Cipher program not writing output to screen

I am trying to write a caesar cipher program using assembly. There is no error, but when it runs nothing is displayed and it quits silently. This is what I wrote.. .MODEL small .STACK 64 .DATA ...
0
votes
0answers
17 views

what is the meaning of lek size of cipher

What is the key size or key length of the cipher , And I heard that 128 bit key, 1024 bit RSA key , what does that mean? for suppose there is a 1024 bit key , I thought that 1024 means number of ...
0
votes
0answers
10 views

CipherSaber bug

So I implemented ciphersaber-1. It almost works, I can decrypt the cstest1.cs1. But i have trouble getting cstest2.cs1 to work. The output is: The Fourth Amendment to the Constitution of the Unite ...
1
vote
2answers
59 views

Encrypt/Decrypt pdf file with Java

I want to encrypt/decrypt a pdf file on Android (but it's a java common issue) I have this code to generate my key : public static byte[] getRawKey(byte[] seed) throws Exception { ...
0
votes
0answers
57 views

Cipher Feedback mode c++ implementation

HI I am tiring to implement a CFB with DES. I think i am able to encrypt using with CFB but how can I decrypt?? My main issue is CFB code for encrypting using CFB correct ??. Due to the restriction I ...
0
votes
1answer
48 views
+50

Cipher Output and Input Streams

I'm attempting to store some encrypted data in the Android filesystem. I'm getting errors I don't understand and empty files. Please help. Code: private Cipher cipher; private ...
-1
votes
0answers
33 views

TripleDES algorithm i made doesn't work

i made a small program to try some Encryption the 3DES uses normal Cipher Block Chaining 3 times (the CBC works on it's own when i try) SDES.Decrypt takes byte key and cipher and decrypts it (works ...
0
votes
0answers
25 views

Input another encryption into cbc mode

Current I am using the block encryption DES to do CBC, I would like to include an option for user to use other block cipher such as Tiny Encryption. The output for tiny encryption is different from ...
0
votes
1answer
42 views

monoalphabetic ciper decryption?

Can anybody see what i'm doing wrong here? I have an algorithm that encrypts a string by moving it 14 spaces along an array but when i try and decrypt it some of the letters are repeated for example ...
-1
votes
3answers
58 views

Encrypt message with private key? [closed]

In RSA encryption and decryption, we use the public key to encrypt the plain text to cypher text and then read it with private text. But in Signature, it is said to sign it with private key, and then ...
-1
votes
4answers
87 views

Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 26

I am getting the error Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 26 in my code when i try to run certain letters (e) and i dont know how to resolve it. The array contains ...
-3
votes
0answers
28 views

Caesar cipher using assembly language [closed]

I am new to assembly language and I am trying to make a Caesar cipher program in which user enters 15 chars and key value range 0-F hex, can you please help me with it. What I wrote so far: .MODEL ...
-1
votes
2answers
68 views

How can I detect that a key has been reused in one-time-pad encryptions?

I have 20 OTP ciphertexts which I know were encrypted with only 19 distinct keys, so 1 key has been reused. Also only two different messages, with the same length, were encrypted. I know that if I ...
0
votes
0answers
52 views

IBM PKCS11 implementation interoperability with SafeNet

I am using the following code to add pkcs11 security provider to IBM JDK 7: provider = registerProviderByClassName("com.ibm.crypto.pkcs11impl.provider.IBMPKCS11Impl " + confPath); ...
1
vote
1answer
44 views

Alternative to closing a CipherInputStream

I'm having trouble because I need to close de CIS (or I won't get the last 16 bytes) but I can't because I'm using it over a socket: cis = new CipherInputStream(new ...
0
votes
1answer
197 views

File “<string>”, line 6, in <module> ImportError: No module named Crypto.Cipher

I try to install "Userful MultiSeat-X64-5.0.1 ..." in Ubuntu 04.12 LTS x64, and encountered the following error at the end of the installation: File "<string>", line 6, in <module> ...
0
votes
1answer
35 views

Check if an RSA key is correct before calling doFinal?

I am trying to create a program that will check digital signature using the javax.crypto.Cipher API. My program works correctly as long as the RSA keys are paired correctly. However, when I have an ...
0
votes
0answers
87 views

Decrypt file in java failing on hash verification

I am using this sample from code project - C# implementation of encryption, in java ...
2
votes
2answers
59 views

Cipher: What is the reason for IllegalBlockSizeException?

I have observed the following when I worked with Cipher. Encryption code: Cipher aes = Cipher.getInstance("AES"); aes.init(Cipher.ENCRYPT_MODE, generateKey()); byte[] ciphertext = ...
0
votes
1answer
36 views

Decryption fails on chaging the IV in AES algorithm

I have some encoded value received by my webservice. Now I have to decode this encoded string and get the bytes of it. Now I am using this byte array as my IV value for decrypting a values using AES ...
0
votes
0answers
13 views

Com4j on Cipher.dll

I am using Com4j to create java classes for cipher.dll in Windows 7. It successfully creates the class files. Also I am able to encrypt the string as expected, but while using the decrypt function ...
2
votes
1answer
223 views

Encrypt file using hill cipher and java?

As we know, Hill cipher is a classical cipher in cryptography. Hill cipher most mostly used for encrypting text. I need to encrypt file (such as .doc, .ppt, .jpeg, etc), not the contents of file. I ...
0
votes
4answers
97 views

Remove Punctuation and Spaces from string using Regex

I am trying to take out all the punctuation and spaces in a string that I am going to encrypt using a Playfair Cipher. I can't figure out why this line doesn't work. s = Regex.Replace(s, ...
1
vote
2answers
102 views

Visual basic substitution cipher

I am trying to create a substitution cipher using Visual Basic. I am new to programming and struggling so would appreciate some support please. The cipher should do the following: Ask the user for ...
1
vote
1answer
72 views

Java CipherInputStream puts strange character at beginning of line

I'm testing the encryption of text in Java. The problem is that I get some strange characters at the beginning of the line and I don't understand why. When I remove encryption everything goes ...
0
votes
3answers
227 views

Any simple encoding-decoding or crypt-decrypt class php for strings?

I've been looking in phpclasses, google, but couldn't find yet a simple encoding class that allows me to encode/crypt a string (unique number) into an unique short alphanumeric code and then ...
0
votes
2answers
113 views

Java AES cipher text size

I'm using a very standard way of Java AES encryption / decryption. byte[] key = hexStringToByteArray("C0C1C2C3C4C5C6C7C8C9CACBCCCDCECF"); byte[] message = ...
1
vote
1answer
33 views

Is there a Python API that will return precise cipher information about a TLS connection?

I'm trying to write a python (or Java) program that makes an https connection to a website and then returns properties of the https connection. I've been using python's ssl ...
0
votes
0answers
32 views

Android decryption - garbled text displayed before plaintext

I am using RSA decryption within an android app. When it decrypts the ciphertext (cipher.doFinal), the result printed out as a string has approx 28-30 garbled characters before the original message ...
0
votes
2answers
57 views

Installing a seed cipher for ssl use in erlang on ubuntu?

I am curious as to why this code is not working. I think it is because I am missing a certain library that provides the seed or possibly rand commands. This is my error message {"init terminating ...
0
votes
3answers
100 views

Casear Cipher c program won't accept

Why won't my code accept a string that doesn't contain characters a-z A-Z 0-9? If were to encrypt this to shift for example "aaaaa[[[[[[", I get an error. I want the code so that it can also accept ...
1
vote
1answer
121 views

Trouble with RSA using phpseclib in PHP

I'm trying to use the RSA implementation in phpseclib, I thought it would be easier to do the code once in a function and re-use the function. When I've tried texting the code I get a error saying ...
0
votes
0answers
29 views

Amount of different letters used in substitution cipher change number of possible decryptions?

I have this question I've been wracking my brain over, my math in this area isn't too crash hot. Stay for instance you had a mono-alphabetic cipher but only utilised 19 of the possible 26 letters of ...
-1
votes
1answer
116 views

CBC Ciphertext stealing (decryption) [closed]

Can someone explain the steps to the decryption side of cipher text stealing with CBC. I am trying to implement my own encrypt and decrypt methods using AES as the core algorithm. I have achieved the ...
-1
votes
1answer
58 views

Minimum length of source string for cipher

Is there a minimum length for the source string for cipher? I am trying to create unique session ids, and am doing the following: cipherer = OpenSSL::Cipher::Cipher.new("aes-256-cbc").encrypt ...
0
votes
0answers
19 views

Simple Cipher with standard C - needs tweaking

Hey guys I'm writing a simple cipher code using C. I've built a basic function (which I will share below) that simply takes a message from the user, takes each indexed character, and moves them 3 ...
0
votes
1answer
197 views

Preferred method for AES Encryption and Decryption in Java

I have written the following two methods that encrypt and decrypt a given token: private static final String ALGORITHM_TYPE = "AES"; private static final String CIPHER_TRANSFORMATION = ...
0
votes
0answers
53 views

Adding Cipher to SSL Curl Call

I need to add the following cipher when making an SSL call: $curl->setopt(CURLOPT_SSL_CIPHER_LIST, 'rsa_rc4_128_sha'); Now, this is done in Perl, but at the end of the day, this is going down the ...
-4
votes
3answers
215 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 ...
0
votes
4answers
241 views

Caesar Cipher C++ (using char pointer and shift as arguments)

I'm looking to make a method like so (which encrypts a message using Caesar Cipher, entered by the user and displays it): void encrypt(char *message, int shift); My code: #include <stdio.h> ...
0
votes
3answers
89 views

making a line of text from a text file into a cipher text in java

I have a line of text that I need to decrypt into a cipher text. Let's say my line of text is abc def ghijklm n opq rstu vwx yz and I want an output like this: aei qu c k rvzdhmptxbfjn y glosm ...
2
votes
1answer
261 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
0answers
74 views

Disabling weak SSL Cipher CherryPy/Windows Server 2008

I am running CherryPy 3.2.2 (Python 2.7) as a web server under Windows server 2008. While scanning with SSLLABS, the cipher suite "TLS_RSA_WITH_DES_CBC_SHA" is identified as weak. How can I disable ...
0
votes
1answer
95 views

Java Cipher in Nodejs

I got the task to convert this Java decryption method into Nodejs, but I don't really understand this Java stuff. I'm especially confused with PBEWithMD5AndDES. Please explain to me, how I can ...
0
votes
1answer
54 views

error messages in cipher code

I am doing a cipher in python right now and I need some help on how call another external function inside another function here's the external function...which is working 100% correctly so far! def ...
-1
votes
3answers
137 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 ...
1
vote
3answers
105 views

Reverse a simple Encryption Algorithm

I'm trying to do some updates on a pretty old app that has been abandoned I have located some of the admin passwords in the database it seems to be a very simple hash but not anything I have run into ...
0
votes
1answer
170 views

How to set BlockSize and KeySize using AES encription in java

I am trying to set the BlockSize and KeySize in java encryption code. Here is my code that works fine but how to specify the aes.BlockSize=128 and aes.KeySize=128? I have taking reference of Aes aes = ...

1 2 3 4 5 6