Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
491 views

Safe non-tamperable URL component in Perl using symmetric encryption?

OK, I'm probably just having a bad Monday, but I have the following need and I'm seeing lots of partial solutions but I'm sure I'm not the first person to need this, so I'm wondering if I'm missing ...
7
votes
4answers
484 views

C# AES Rijndael - detecting invalid passwords

I'm using Rijndael to encrypt some sensitive data in my program. When the user enters an incorrect password, most of the time a CryptographicException is thrown with the message "Padding is invalid ...
5
votes
1answer
482 views

Is it insecure to pass initialization vector and salt along with ciphertext?

I'm new to implementing encryption and am still learning basics, it seems. I have need for symmetric encryption capabilities in my open source codebase. There are three components to this system: ...
5
votes
5answers
161 views

Preventing MITM attacks on server

Two clients Alice and Bob use a server to login and exchange messages through the server. On login, they both send their public keys to be stored on the server. When Alice wants to speak to Bob, she ...
4
votes
1answer
197 views

What is wrong in my RC6 implmentation?

can anyone see where i made a mistake here? I know that the algorithm will properly decrypt the encrypted data. however, most of the encrypted data is not the correct output, according to the RC6 ...
4
votes
2answers
439 views

SQL Encrypted Columns in WHERE Clause

I am looking to apply SQL column level encryption using symmetric keys. The initial steps needed to create the Database Master Key, Certificates and Symmetric Keys seems straight forward and I have ...
4
votes
1answer
150 views

Proper password storage and retrieval for service accounts?

Most of the information that I found and read about properly storing passwords in a database say that I should Hash the password clear text with a unique salt value for each user and then store that ...
4
votes
2answers
927 views

Using Rijndael encryption for large files

I'm in a situation where I need to encrypt / decrypt a file of n length securely, ideally using Rijndael, but definitely at 256bit encryption. I've played around with encryption before and have ...
3
votes
2answers
129 views

Symmetric Encryption between .NET and Java

I am using a 3rd party platform to create a landing page, it is a business requirement that I use this particular platform. On their page I can encrypt data and send it to my server through a ...
3
votes
1answer
79 views

Data encryption in application cluster

I have a web application accessed over SSL. To beef up security on the back end we are looking at adding in symmetric encryption for the database. The application is spread across 6 servers in a ...
3
votes
3answers
441 views

Which symmetric key algorithm does SSL use?

I understand that thru SSL, the browser gets public key of the secured website and thru public key encryption rsa algorithm, these 2 establish session key and then continue communication thru some ...
3
votes
2answers
202 views

How strong is this hashing technique?

Use AES/Rijndael or any symmetric encryption. Encrypt the hidden value using itself as the key and a random IV. Store the ciphertext + IV. Discard everything else. To check the hash: try to decrypt ...
3
votes
2answers
590 views

Is this a secure encryption method

I'm writing an application for Android that uses symmetric key encryption to protect sensitive data. As far as I can tell, Android only directly supports "PBEWithMD5AndDES". How secure is this ...
3
votes
2answers
321 views

Differences between CAPICOM TripleDES and System.Security.Cryptography TripleDES

I'm trying to move away from using CAPICOM since I can no longer use it (64-bit Windows 7 machine). The existing code for using TripleDES is like this: EncryptedDataClass cryptic = new ...
3
votes
3answers
627 views

Diffie-Hellman in Silverlight

I am trying to devise a security scheme for encrypting the application level data between a silverlight client, and a php webservice that I created. Since I am dealing with a public website the ...
3
votes
2answers
704 views

Securely Storing Optional Entropy While Using DPAPI

So I am trying to store the symmetric key using DPAPI. All is well and great, but what to do with the entropy? This answered question here really doesn't provide enough insight. It seems like a ...
2
votes
4answers
45 views

Really simple encryption with C# and SymmetricAlgorithm

I'm looking for a very simple crypt / decrypt method. I will be using always the same static key. I'm aware of the risks of this approach. Currently I'm using the following code but it does not ...
2
votes
2answers
131 views

Looking for archive supporting Java and strong encryption

I am looking for a "standard" archiver format (ZIP, 7ZIP, etc.) that is supported by a pure Java library and has strong (AES-128) encryption. I need a format that people can decrypt using ...
2
votes
3answers
272 views

BinaryFormatter & CryptoStream problem when deserializing

I'm getting a bit desperate here. I'm trying to write an encrypted file with a serialized object to disk and later retrieve the file, decrypt it and deserialize the object back. UPDATE: I refactored ...
2
votes
2answers
485 views

Occasional Bad Data Error while decrypting the string : System.Security.Cryptography.CryptographicException

In my ASP.NET WebForms App (The app is running on windows server 2008 R2, IIS 7.5 and Runtime v4.0 Integrated Mode App Pool if it matters), I am encrypting data, putting it on the QueryString and ...
2
votes
1answer
212 views

Using Rfc2898DeriveBytes Class to obtain Key and IV

I am just becoming familiar with encryption and the .NET framework. After looking at many examples I am seeing a repeated pattern that confuses when using the .NET Class Rfc2898DeriveBytes. When using ...
2
votes
5answers
330 views

Security: How vulnerable is this authentication/encryption scheme?

I have a client-server game, where the client connects to a server and stays connected during the game (approx 5-60 min). I want new clients to be able to register securely, as well as allowing ...
2
votes
3answers
118 views

Issue with .NET encryption

I referred to this article http://www.codeproject.com/KB/security/DotNetCrypto.aspx and I am trying write an encrypted string instead of plain text. Below is the code I am using: TextWriter tw = new ...
2
votes
1answer
312 views

Calculation of encrypted file size does not match true size

I have the need to calculate the size of a file I am encrypting using Rijndael. According to other answers on this site, and on google, the following is the correct way of calculating encrypted data ...
2
votes
4answers
1k views

PyCrypto problem using AES+CTR

I'm writing a piece of code to encrypt a text using symmetric encryption. But it's not coming back with the right result... from Crypto.Cipher import AES import os crypto = AES.new(os.urandom(32), ...
2
votes
1answer
507 views

AES / Rijndael Test Vectors : what padding mode?

So I've been looking at these test vectors for the Known Answer Test for AES / Rijndael (with 128-bit block) in CBC mode, and I wonder: what kind of padding do they use? PKCS7?
2
votes
3answers
678 views

Can Derby / JavaDB _really_ encrypt with Triple DES rather than (plain) DES?

It seems to be confusing Triple-DES (>128bit) with plain DES (64bit). I'm trying to encrypt a Derby database with Triple DES (or DESede) using Java 1.5 I found this discussion forum message about a ...
2
votes
3answers
1k views

Differences Between Rijndael and AES

I'm investigating encryption algorithms - can someone give me a quick rundown of the differences between Rijndael and AES?
1
vote
0answers
49 views

How to choose an AES padding mode? [closed]

Depending on the framework you are using, there are various padding modes that can be used with AES encryption. For example, with .NET we can choose PKCS7, ISO10126, ANSIX923, Zeros or None. Similar ...
1
vote
1answer
54 views

AES and its cipher modes

I was trying encryption/decryption with AES then I tried the CBC & ECB modes I got the same encrypted output from all three ! is this how it goes? it's may not be wrong but I just don't know what ...
1
vote
0answers
85 views

Decrypt Data From SQL Server 2008 R2

I need some help translating this procedure (see below) to Entity Framework 4.0. Does anyone have any suggestions of how to port this over. The target project includes; Silverlight 4, WCF RIA ...
1
vote
1answer
237 views

AES 256 Encryption with PyCrypto using CBC mode - any weaknesses?

I have the following python script to encrypt/decrypt data using AES 256, could you please tell me if there's anything in the code that may make the encryption weak or if there's anything that I've ...
1
vote
2answers
92 views

Is that OK to use static IV value in Rijndael encryption for many files?

I have a question about IV in Rijndael encryption. My current approach of using Rijndael is to use a pair of static Key and Iv for all encryption operations (I mean I use this pair of Key and Iv for ...
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
3answers
148 views

Encrypt an Integer Value with DES

I want to encrypt an integer with DES, the resultant cipher text should also be an integer. Decryption function should follow this notion as well. I am trying to modifying the code at Encrypting a ...
1
vote
1answer
48 views

SSL + Additional Layer of Encryption

I'm wondering what to do in the case of a customer asking for a second layer of encryption on top of SSL? For example, I have an SSL tunnel, and the customer wants me to then use symmetric key ...
1
vote
2answers
716 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
4answers
251 views

Is there two key symetric commutative encryption function?

I'm wondering if there is some strong (like AES or so.) encryption function that works like this: symetric 2 keys: plaintext -> 2keys ->ciphered text, however it must not matter order of keys, i.e ...
1
vote
1answer
124 views

Protect/Encrypt Initialization Vector

Is it necessary to protect the initialization vector of AES encrypted data or does it increase the security of the encrypted data if it is protected? With "protected" I mean, that it is treated equaly ...
1
vote
5answers
219 views

Encryption Project: Need advice on how to eliminate method overhead

I am looking for advice. I have developed my own encryption algorithms because I enjoy it and I can. Now, I am looking to try a new idea. My idea involves consolidating a number my algorithms into a ...
1
vote
2answers
130 views

What method of encryption is suitable for encrypting individual words, and also an entire document?

I need to save several documents to the cloud and need to save the documents, document metadata, and words/phrases for searching. My plan is to use a symmetric cypher for encrypting the whole ...
1
vote
1answer
150 views

.NET: Best practice to encrypt sensitive data on a client application?

I need to securely store a user/password pair on a client .NET application (Outlook addin). Encryption needs to be reversible, and I'd be glad to avoid storing an encryption key in my code, as it's ...
1
vote
1answer
207 views

How should I derive the key and initialization vector for my AES encrypted database entries?

I've built a CMS system to allow users to create and manage online forms on my client's intranet app. Of course some of the data handled by the forms may need to be encrypted e.g. if the system is ...
1
vote
1answer
266 views

Deriving a secret from a master key using JCE/JCA

Can some point me in the right direction? I'd like to use JCE/JCA to derive a new key from a master secret key, How can I achieve this? Regards.
1
vote
4answers
510 views

Simple Encryption in Ruby without external gems

I need a simple encryption for some text strings. I want to create coupon codes and make them look cool so subsequently created code should look very different. (And besides looking cool, it shouldn't ...
1
vote
1answer
154 views

RijndaelEncryption with Java then Decryption with C# and EnterpriseLibrary 4.1

I believe when the EnterpriseLibrary tries to decrypt a RijndaelManaged encrypted string it expects the Initialization Vector to be prepended to the encrypted text. Currently with the code below. I ...
1
vote
1answer
266 views

problem in understanding the hill cipher

i want to implement hill cipher but i think i have problem in understanding the algorithm itself. the key i'll use it 2X2 matrix and i'll encode 2 charachter each time. i'll multiply the key matrix ...
1
vote
1answer
155 views

How to use secure encryption of an existing column in SQL Server 2005

I want to encrypt an existing column in SQL Server 2005, using an UPDATE statement, moving the old content into the new encrypted column. So I have 2 choices: Symmetric and Asymmetric. The issue I ...
1
vote
2answers
159 views

How to authenticate client based on possession of symmetric key?

Our clients call our web service over SSL and authenticate themselves with a username and password. Our server then generates a symmetric key and sends it back to the client. Then, the client ...
1
vote
1answer
594 views

Should one use Cryptographic message syntax (CMS) for this task?

I've the task to transfer small binary messages (1 or 2 kb long) between a desktop application and mobile devices. The messages should be encrypted asymmetrically (RSA for instance). From what I've ...

1 2