Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
862 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, ...
6
votes
1answer
324 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 ...
5
votes
3answers
119 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 ...
5
votes
4answers
335 views

Cryptanalysis of ciphertext using Java

I'm looking for some ideas on an assignment. I have 7 ciphertext files, all of which are encrypted using the same symmetric key, which is 3 characters long and is alphabetic. No encryption algorithm ...
5
votes
3answers
2k 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 ...
4
votes
2answers
141 views

AES CFB 256 bit encrypt the output is longer than the input?

I want to ask something, what makes a difference in the output below that these two programs vb.net 2010 and the dynamic c? Why the length of the encrypted data different results (vb.net - 16 byte = ...
4
votes
2answers
213 views

Can I use AES in CTR mode in .NET?

.NET's AES does not implement CTR directly. It only implements CBC, CFB, CTS, ECB and OFB. Can I use any of these modes and securely implement CTR around them, or do I need to use a different ...
4
votes
2answers
350 views

Should RSA public exponent be only in {3, 5, 17, 257 or 65537} due to security considerations?

In my project I'm using the value of public exponent of 4451h. I thought it's safe and ok until I started to use one commercial RSA encryption library. If I use this exponent with this library, it ...
4
votes
10answers
651 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
4answers
153 views

Caesar Cipher in C# (beginner)

This might be a stupid question (and if so sorry): if I want to write a ceasar cipher c# do I have to go through every case? It doesn't make sense to me to convert to ascii or utf (probably because I ...
3
votes
2answers
284 views

RSA encryption in Java

I am trying to write an encryption algorithm using RSA in Java, I am getting a "javax.crypto.BadPaddingException: Data must start with zero"; I do not know what is this exception for. This is the ...
3
votes
2answers
204 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.
3
votes
2answers
2k 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 ...
2
votes
1answer
66 views

Homework(revision): Caesar cipher, wrap around when char's are >'z' (c++)

I was here earlier and got a hand adding to chars ascii references to increment the cipher shift on each letter. However i have no idea how to fix the problem of characters being higher than 'z'. Can ...
2
votes
1answer
97 views

How to use public encryption to manage licensing on android applications?

I don't want to publish my app on Android Market, but i would create a license key from my website based on the MAC address of the user device. It should include also expiration date. Once the user ...
2
votes
2answers
137 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 ...
2
votes
2answers
72 views

Dynamically generating a decryption key rather than hardcoding a string literal? (Objective-C / iPhone)

My iPhone app is using encrypted assets. The decryption key will need to be hardcoded but I'm trying to avoid using a string literal. Is there a good standard algorithm to do this sort of thing? ...
2
votes
1answer
92 views

Why not all cipher suites are enabled by default in Java?

What is the disadvantage of: sslSocket.setEnabledCipherSuites( sslSocket.getSupportedCipherSuites() ); Why is this not the default setting? Are there some security risk with some of it?
2
votes
3answers
736 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 ...
2
votes
1answer
237 views

Implicit declaration of function 'sqlite3_key'?

I am working on SQLite File Encryption. I have added sqlCipher & crypto frameworks successfully in my project. Now when I try to compile my application on this line int rc = ...
2
votes
2answers
356 views

Java sending encrypted file over socket

I've been trying to write a small file server. I got it to the point where a file transfer's just fine, but now that I've tried to add encryption strange things are happening. I'm trying to use cipher ...
2
votes
2answers
326 views

Python decryption

I am currently working on a homework assignment, and we have to build a function where we make a three step encryption/decryption program. One of the ciphers we have to build is a transposition/rail ...
2
votes
1answer
197 views

sqlcipher: failed to access DB providing hex key

I'm trying to create DB using sqlcipher and then access it by using hex value of password key. According to description from github (https://github.com/sjlombardo/sqlcipher) key is hashed by sha256 ...
2
votes
3answers
500 views

Cipher text Letter Freq Substitution: Comparing 2 dictionaries' dict keys by value and altering a text

I've had a look at similar topics, but no solution I can find exactly compares to what I'm trying to achieve. I have a cipher text that needs to undergo a simple letter substitution based on the ...
2
votes
2answers
378 views

Encrypting with DES and password

I'm using the code I've found here to encrypt using DES. I'm sending this value to 3rd party servce, but doesn't seem to work. Question in code given code, salt and iteration are used as parameters ...
2
votes
1answer
899 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
2answers
667 views

Cipher.doFinal output size

I am doing AES CBC decryption in java using javax.crypto . I am using the following Cipher class methods: public final void init (int opmode, Key key, AlgorithmParameters params) method for ...
2
votes
1answer
503 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 ...
2
votes
5answers
558 views

Software tools to automatically decrypt a file, whose encryption algorithm (and/or encryption keys) isn't known?

I have an idea for encryption that I could program fairly easily to encrypt some local text file. Given that my approach is novel, and does not use any of the industry standard encryption techniques, ...
1
vote
1answer
122 views

Need help reverse engineering an algorithm

Im stuck reverse engineering a piece of java code. I was wondering if someone could help me out! String var1 = "hello"; String var2 = "123456"; long var_l = 0L; byte[] a1 = new byte[50]; byte[] a2 = ...
1
vote
0answers
31 views

javascript hash and ciphers implementation, any scripts that can take care of all of them?

I'm looking to implement the following in js: Hash: md5, sha1, sha128, sha256 Ciphers: aes128, aes192, aes256, blowfish, rc4 I know that there are many independent sources of code for each of ...
1
vote
2answers
92 views

Java byte[] to String and UTF-8

I am implementing a Cipher Block Chaining for school work and the question asks for a method taking String and returning another String. At first, I thought it was odd and that byte[] variables would ...
1
vote
2answers
94 views

Trouble with pointers in C and using them in functions

I basically wrote a simple Caesar cipher program (simply shifting characters in ASCII with hardcoded key 12) but I am new to C so having trouble with pointers and accepting char arrays as input and ...
1
vote
1answer
49 views

QCA Crash on Symbian Device

I am using QCA and i have build the Library for Symbian 4.6.3 Debug and release mode When i implement the code in Symbian Qt Project and Launch in Nokia C7. The app will crash when it run “Cipher” ...
1
vote
2answers
308 views

Programming a Cipher Program (Plain Text->Caesar Cipher->ASCII)?

I really need to know how you would code this or something similar in Java: http://www.cs.carleton.edu/faculty/adalal/teaching/f05/107/applets/ascii.html Here is my attempt I've been at it the whole ...
1
vote
0answers
132 views

How to load RSA Public Key from String in J2ME

I need to do some encryption in J2ME through sms. The app receives the public key in an sms as String, the same way openssl creates Public key from Private key, this is how the keys are created: ...
1
vote
1answer
115 views

Tools to detect when a weak encryption algorithm is being used

Every time I've joined a new company I've found that there is an in-house encryption algorithm in place to work with passwords and such. And every time it's just some kind of substitution cipher ...
1
vote
3answers
192 views

Android -> iOS Cipher migration

I have to migrate an Android app to iOS that uses Cipher. So here is the Android code: PaddedBufferedBlockCipher cipher = new PaddedBufferedBlockCipher(new CBCBlockCipher(new DESedeEngine())); ... ...
1
vote
1answer
107 views

Using CipherOutputStream in Java

I'm trying to use an AES cipher to encrypt some bytes but it's returning a silent error, meaning I enter something like: byte[] raw = new String("Test","UTF8").getBytes("UTF8"); and it won't return ...
1
vote
2answers
166 views

How to repeat alphabet in decryption caesar cipher c# [closed]

So far, this code is working fine. If I enter "XYZ" and make it shift 3 to decrypt, it gives "UVW" but the problem is occurring when i enter "ABC". Instead of getting "XYZ" i get ">?@". char[] chars ...
1
vote
2answers
720 views

java.security.InvalidKeyException: Key length not 128/192/256 bits

I am new to Java and was trying to use Hybrid cryptography using AES-128 Symmetric encryption and then RSA-1024 Asymmetric encryption on the generated symmetric key. Can someone help why I am getting ...
1
vote
1answer
838 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 ...
1
vote
1answer
170 views

problem with programming playfair cipher

I have problem with my code Public Class Form1 Dim lm(4, 4) As Char Dim pt As String = "" Dim ct As String = "" Dim key As String = "" Dim n1, n2, n3, n4, m1, m2, m3, m4 As Integer Private Sub ...
1
vote
4answers
271 views

Python: Caesar Cipher, If statement and else statement both True at the same time?

I pretty much have this solved but for some reason the first If statement and the else statement are both saying true for any capitalized letter inputs. So if the ASCII value lands between 65 and 90 ...
1
vote
2answers
81 views

Where can i get AES encyrption for PHP and can AES encrytion be used for document storage?

Where can I get AES encyrption for PHP and can i use it for phpmyadmin? Any references? I want to encrypt files that are stored in the db and other tables as well.
1
vote
2answers
581 views

How to find plain text from RSA cipher text

I have a RSA cipher text c, the pubic key (e,n). (where c = m^e mod n) Now I also have known the plain text m should be either "1234XXX" or "12345XXX", where "XXX" is a 3 digits number. I can find ...
1
vote
2answers
221 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 ...
1
vote
1answer
169 views

Using binary data inside doFinal() - javax.crypto.Cipher

In my project, I xor'ed (sorry but dont know the proper verb) a string and encrypted with RSA-1024. Now I have an xored and encrypted string like: ...
1
vote
1answer
135 views

Checking every possible alphabet cipher combination

I've got what I think is a cipher (this isn't homework, just a challenge I thought I'd try to solve via coding for fun) which is: "uiw uiw n la ltid mtel teacyihr n heeig sfsst" To try to solve ...
1
vote
2answers
61 views

How is security ensured in hash functions where NULL bytes are not present?

I was thinking about this problem to myself previously, and came up with the question: "Theoretically, isn't it possible that a hash function of say, X random bytes, when hashed, would be considered ...

1 2 3