Tagged Questions
Data Encryption Standard (DES) is a cryptographic block cipher algorithm.
7
votes
4answers
2k views
Time to crack DES? Is it a task suitable for a script kiddie yet?
Already understanding that AES is the encryption method of choice, should existing code that uses DES be re-written if the likely threat is on the level of script kiddies? (e.g. pkzip passwords can be ...
6
votes
4answers
5k views
Simple encryption implementation in C
I've used a nice public domain C++ DES implementation before, but now I need some simple, basic, fast cryptography for an embedded system.
It doesn't need to be unbreakable, but it does need to ...
4
votes
3answers
791 views
How can I do an ISO 9797-1 MAC with triple DES in C#?
I've got a project which stipulates the following encryption rules for a 24 byte block of data.
1) Cryptography should be done using full triple DES MAC algorithm as defined in 9797-1 as MAC
...
4
votes
5answers
350 views
Calculate the parity of a byte in Ruby
What's the best way to calculate if a byte has odd or even parity in Ruby? I've got a version working:
result = "AB".to_i(16).to_s(2).count('1').odd?
=> true
Converting a number to a string and ...
4
votes
2answers
155 views
Howto display or view encrypted data in encrypted form?
In the Wikipedia Article on Block Cipher Modes they have a neat little diagram of an
unencrypted image, the same image encrypted using ECB mode and another version of the same image encrypted using ...
4
votes
4answers
497 views
BitShifting with BigIntegers in Java
I am implementing DES Encryption in Java with use of BigIntegers.
I am left shifting binary keys with Java BigIntegers by doing the BigInteger.leftShift(int n) method. Key of N (Kn) is dependent on ...
3
votes
4answers
216 views
Bit manipulation of chars in Java or C
I am a student trying to implement the DES algorithm.
I have a choice of 2 languages: C & Java.
I did understand the algorithm, but am stuck at the very beginning as to manipulation of the key.
...
3
votes
2answers
197 views
Updating LDAP encrypted passsword via JNDI
I need some pointers how to update an encrypted password in an LDAP (OpenLDAP) of a user within an LDAP tree. The passwords in the LDAP server are prefixed with {crypt} which I suppose indicates that ...
3
votes
3answers
413 views
Confused about how Android Encryption works
Okay, I am working on an application and I want to store a file on the user's SD Card, but I want the file encrypted. I've researched several sites that use the DES encryption to encrypt files and ...
3
votes
4answers
4k views
Comparison of DES, Triple DES, AES, blowfish encryption for data
Does anyone have pros and cons together for comparing these encryption algorithms ?
3
votes
2answers
443 views
DES encoding with security key C#
I know It's a probably common question but I cannot find answer anywhere. So I have byte array key and byte array value and I need to produce new 8 byte array that has been encrypted with DES in C#
3
votes
6answers
3k views
Java simple encryption
I would like to encrypt a textual (configuration) file stored on disk.
Trying to use DES encryption I've had fatal error on client machines, I later found out the algorithm could not handle accented ...
3
votes
1answer
617 views
DES Encryption Output
I am using this code to encrypt a 8 bytes PlainText with a 8 bytes Key but the result is always a 16 bytes array.
public static byte[] Encrypt(byte[] PlainText, byte[] key)
{
MemoryStream ms = ...
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
1answer
41 views
Java encryption with PBEWithMD5AndDES algorithm
I am trying to do some encryption stuff between a Java server and Android client. After some research, And
Here are my encryption settings:
public static String encryptionAlgoirthm = "DES";
public ...
2
votes
2answers
44 views
Trying to find a different DES encryption system explanation [closed]
I need a mathematical explanation of what does the DES encryption system really do.
This means I need more explanation than the one that offers FIPS, which is more an explanation for computer ...
2
votes
3answers
137 views
DES Implementation in Java: Error during Key Generation Phase
I am a student doing a mini-project - DES implementation.
I had a doubt previously about converting a 64 bit key to 56 bit key, and could do that successfully, thanks to some guidance received here.
...
2
votes
1answer
201 views
Triple DES encryption
Please note that the issue I am having here is with the key size. At first, based on the comments included in the below code, I figured that my key needed to be 24 bytes (192 bits). This didn't work ...
2
votes
4answers
355 views
TripleDES key sizes - .NET vs Wikipedia
According to Wikipedia, TripleDES supports 56, 112, and 168-bit key lengths, but the System.Cryptography.TripleDESCryptoServiceProvider.LegalKeySizes says it only accepts 128 and 192-bit key lengths.
...
2
votes
1answer
244 views
DES. Weak Keys!
I've been reading through the DES standard and part of the standard mentioned the bit parity & weak keys. So I've been wondering about the merits of weak keys and their side affects. Some example ...
2
votes
1answer
434 views
How to encrypt a serialized object with DES(CBC mode) in Java?
I was reading this article about serialization.
It was the first time I saw encrypting a serialized object.
I'm trying to encrypt some serializable object and then save them into a file.
But the ...
2
votes
2answers
377 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
2answers
189 views
Are there any really compact DES implementation in ARM assembler?
I have a bootloader limited to 32K Bytes, when the DES is added (about 6384 Bytes), it exceeds the limit. So anybody know any DES implementation in ARM assembler as small as possible?
thanks!
2
votes
4answers
82 views
Naming confusion? Is having objects named FlowerGroup and FlowerGroups confusing?
I'm writing a program and I seem to be creating alot of objects where one object will be the singular form and then the collection is the plural form. eg
SalesGroup
SalesGroups
Is this confusing for ...
2
votes
5answers
2k views
Is DES or 3DES still being used today?
I've written a DES implementation as an exercice and am now wondering if and where (triple-)DES is used today.
I've read about banking cards using it, but I can't find any reliable source for it.
2
votes
3answers
5k views
Java PBEWithMD5AndDES
I am using password based encryption. My initial thought was to use AES to encrypt the file which contains passwords. Turns out password based encryption does not support AES. It uses DES. AFAIK des ...
2
votes
2answers
4k views
C# - Serializing/Deserializing a DES encrypted file from a stream
Does anyone have any examples of how to encrypt serialized data to a file and then read it back using DES?
I've written some code already that isn't working, but I'd rather see a fresh attempt ...
1
vote
1answer
51 views
Decrypting DES encrypted data from Java to .Net
I have a problem decrypting an encrypted string that was encrypted in Java using the DES algorithm. I think my main problem is, that I don't see any salt or IV specifications in the java code.
I have ...
1
vote
1answer
164 views
Decrypting DES with OpenSSL
I'm trying to decrypt a DES-encrypted file from an external source with a known key and IV using OpenSSL (other libraries aren't really an option, as the application links against it already and I ...
1
vote
3answers
155 views
How can I implement CBC-MAC with DES?
I should implement a MAC-CBC generation method in C# with some information about the cryptography algorithm. Here's what I have:
I should use DES.
The key is byte[] {11, 11, 11, 11, 11, 11, 11, 11}
...
1
vote
2answers
140 views
DES Cryptography in C#
I've been trying to find out the correct way to encrypt a byte[16] variable using DES algorithm. Here's the scenario:
The data should be encrypted in 8-byte parts. the key for encryption is: ...
1
vote
2answers
80 views
DES encryption in PHP
I am coding a Drupal payment method module and within this I need to generate a hash to send to a bank. Bank asks me to code certain strings into the DES/ECB hash. They also provide test environment ...
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
2answers
260 views
DES-ECB encryption and decryption
I'm using DES-ECB + base64 encryption in my application. That's the code of the class I called "Crypto"
public class Crypto
{
public static string Decrypt(string encryptedString)
{
...
1
vote
2answers
176 views
Code to break DES
I am studying Cryptography and I need to develop Java or C code to break DES(Data Encryption Standard). I am aware of the algorithm used in DES but I don't know how should I go about coding in Java or ...
1
vote
1answer
116 views
DES encryption in Java and PHP
I need to create a class that will encrypt the text and sends that to PHP server. Then PHP server Decode that.
But problem is that, I don't know PHP so I can not write code with same logic (as I used ...
1
vote
5answers
198 views
Encrypting url with triple DES
I am developing a web application that will redirect users to an outside web application. I would like to encrypt the redirect url so the users can not directly modify the url. The outside vendor ...
1
vote
1answer
95 views
DTO object design
I have customer object contains his contact information,transaction details,address details.
Here how to design my DTO object to hold all the information.I am getting output as xml file.Here i want ...
1
vote
3answers
929 views
python: how to encrypt a file?
Can anybody help(or point to some examples) about how to encrypt files with python?
I have to use following parameters to encrypt file:
block size=8
iv=qwertyui12345678
method=des3_cbc
Also I have ...
1
vote
1answer
249 views
Understanding parts of GNU Crypto DES algorithm (Java)
I'm currently confused as to the behaviour of the DES algorithm provided by the GNU Crypto package. Here's a link to the algorithm in question: GNU Crypto DES algorithm
Originally I was merely ...
1
vote
1answer
171 views
LNK2019 error when compiling code
I have some sample code that I was editing in Visual Studio 2010 to encrypt and decrypt using DES. For some reason, when I compile the code i keep getting these two LNK2019 errors that are referring ...
1
vote
1answer
548 views
Encrypt with PHP and Decrypt with Java
I have to write a program to decrypt a message using JAVA. The message is encrypted using Triple DES / ECB implemented in PHP. I have tried a few different settings on the algorithm, mode, and padding ...
1
vote
0answers
161 views
What is CAPICOM DES doing under the hood?
I found a link that explains what CAPICOM does for 3DES (Understanding Capicom), but I'm not sure if this is directly applicable to the single DES algorithm that CAPICOM does.
It seems that CAPICOM ...
1
vote
3answers
450 views
How do I use the DES Algorithm in .NET?
How do I use DES in .NET?
Here's how I'd do it in Java:
public static String decrypt(byte[] pin, byte [] desKeyData ) throws Exception {
//if (ISOConstantsLibrary.DEBUG) ...
1
vote
1answer
693 views
DES Initialization Vector in C#
I am trying to decrypt (using the DES algorithm) data that comes from a third party in C# code. There are plenty of examples here and elsewhere that have helped me out. The problem is that I don't ...
1
vote
6answers
1k views
How should I create my DES key? Why is an 7-character string not enough?
I'm having a bit of difficulty getting an understand of key length requirements in cryptography. I'm currently using DES which I believe is 56 bits... now, by converting an 8 character password to a ...
0
votes
1answer
18 views
Java DESede encrypt, OpenSSL equivalent
I'm using DESede encryptation in Java and I want to make the same encryptation using the OpenSSL's API in C++.
Java code:
String secretKey = "abcdefghijklmnopqrstuvwx";
byte[] bytes = ...
0
votes
1answer
311 views
Triple DES Decryption of plain text
I have some plain text encrypted with Triple XOR and then Triple DES. I also have the key. How do I manage to uncover the plain text?
0
votes
1answer
112 views
IPHONE Objective-C program using OPENSSL perform DES Encryption
I have found an example about OPENSSL DES, when I applied this example into Objective-C program, the decrypted text was not equal to what I have input.
textField.text is the input textbox
Can anyone ...
0
votes
1answer
35 views
Clarification on PRNG Algorithm as per ANSI X9.31
Newbee question:
I am studying ANSI X9.31 -1998 for implementing PRNG as per section 2.4. I am not able to properly understand the representation of varibles used - like "ede".
Is the "ede" an ...