In cryptography, Triple DES is the common name for the Triple Data Encryption Algorithm (TDEA or Triple DEA) block cipher, which applies the Data Encryption Standard (DES) cipher algorithm three times to each data block.

learn more… | top users | synonyms

0
votes
0answers
25 views

How to encrypt, decrypt data using DUKPT and 3DES algorithm in iphone for a card reader application?

I have reffered this code and successfuly created IPEK and PEK for differant TKSN and Now how do I encrypt this keys to my card reader device and how do decrypt the card information using those keys. ...
1
vote
1answer
26 views

Different 3DES encryption result between objective-c and C#

I am developing a ios app, using C# in server side. I need to use 3DES encryption to encrypt the password. In both code: key = "FC13573F412EAA1BA8E34791C06504C1429C5BCEB94DB111"; plainText = ...
0
votes
0answers
9 views

machinekey validation using 3DES

I am getting the error on the following machinekey when using validationkey & decryption key using 3DES validation. it works when i removed both. what's the best approach when using 3DES? ...
0
votes
1answer
21 views

OpenSSL.NET DES Functions

I wan't to deal with 3DES algorithm using OpanSSL C# wrapper. can anyone tell me where to find 3DES functions in OpenSSL.NET? and how to encrypt and decrypt using shared secret key between the server ...
0
votes
1answer
39 views

Decrypting 3DES data encrypted via another source

As part of a proof of concept I was given a bas64 encoded / Triple DES (MODE_ECB) encrypted string from a third party. I wrote a quick test knowing that the decrypted value should be "testdata", but ...
2
votes
1answer
72 views

AES256 vs 3DES 256 key detection

How would I be able to determine the encryption of a key (AES256 or 3DES 256)...Since both keys will be 32 characters (8 bits per char * 32 char)=256 bits and Mime encoded. Example ...
-3
votes
1answer
49 views

how to implement in JNI [closed]

How to implement in JNI this function ? public byte[] decrypt(byte[] enc) throws Exception{ Cipher c3des = Cipher.getInstance("DESede/CBC/PKCS5Padding"); SecretKeySpec myKey = new ...
0
votes
0answers
47 views

3DES Encryption in ios is not working?

hi iam using following code for 3DES encryption in ios ,but the code is not working the result value is 0 here please help me. my key is 24 bit long,and iv is 8bit. i want to encrypt a string and ...
1
vote
1answer
73 views

Porting C# CryptoSys-assisted 3DES encryption to Objective-C CommonCrypto issues

I am currently working on an iPhone app that is a port of a subset of .NET C# functionality. I must log into a server using a 3DES encrypted password (yes, I know that is not an optimal standard, but ...
0
votes
1answer
139 views

Android - How to use 3DES algorithm

On the server side, the encyption/decryption of the password field is done in C#. Now, i need to implement same functionality in my android application. So, i followed this tutorial: ...
0
votes
2answers
65 views

NoSuchProviderException when encrypting string with 3DES

I am new to Java. I followed this tutorial about Encryption and Decryption using 3DES algorithm. I have implemented like this: Created a class and placed the 3DES code provided in the above link. ...
1
vote
1answer
236 views

Decrypting data in Python that was encrypted in 3DES by Java

I'm trying to decrypt data using PyCrypto. The data was encoded in Java with the javax.crypto package. The encryption is Triple DES (referred to as "DESede" in Java). As far as I can tell, default ...
0
votes
0answers
219 views

PHP 3DES (CBC/192) encryption/decryption for SOAP authentication (C# example code)

I'm trying to complete a SOAP authentication proces but I can't get the encryption/descyption of the secrets to work. The SOAP service is build with .NET, I try to integrate the service in PHP. ...
1
vote
1answer
216 views

iOS 3DES encryption with md5 key

Can you help me please. I have developed an iOS application. I tried to encrypt a string with the 3DES algorithm, but I found a different result from Java code. Key should be md5 and size 24 byte. ...
1
vote
1answer
266 views

PKCS11 deriveKey() and encrypt() returning different results for 3DES

I am working on a key derivation problem using an HSM and PKCS11 and currently I can't understand why I see completely different results depending on whether I use the deriveKey() method as opposed to ...
0
votes
1answer
280 views

3des in php - cannot get good key/string

I need to decode a 3des string in a php and I have no experience in decripting so far... First step is: get the key and the set of strings to decode - I have that already. I have this information ...
0
votes
0answers
233 views

Failure to decrypt an AES encrypted SMIME Message with OpenSSL

I have a two mails (SMIME encrypted) for a single recipient. One mail is encrypted using 3DES, the other one is encrypted using AES 256. The mails where created using C# EnvelopedCms class. I can ...
1
vote
0answers
218 views

Mifare Ultralight C 3des key change

I'm trying to change the 3des key on an Ultrilight C card, I can write the the values in to the address 44-47 as I've found in some topics here, but I cannot authenticate when using it, if I write ...
1
vote
1answer
173 views

In ios 3des encryption contain lots of null termination.when i convert NSData to NSString , it will endup to first null termination?

i have used this function for 3des encryption. ccStatus = CCCrypt(kCCEncrypt, // CCoperation op kCCAlgorithm3DES, // CCAlgorithm alg ...
0
votes
1answer
154 views

Want to convert 3DES Encrypted NSData to NSString

In my project, I am encrypting some data (string) using the 3DES encryption algorithm. The string I pass to the encryption function returns me a NSData object. Now I want to convert NSData to ...
3
votes
1answer
222 views

Replicate T-SQL DecryptByPassPhrase in C#

I wnat to create a C# class to decrypt a byte array encrypted using T-SQL's EncryptByPassPhrase. (Yes, I know I could decrypt within SQL Server, but what I need is to be able to encrypt/decrypt ...
0
votes
0answers
56 views

Encrypt DES using talitos driver for SEC, prepared only to do 3DES

We are working in a freesqueil platform that uses SEC engine to do encrypt/decrypt. The driver that we need to use is talitos. This driver supports two asynchronous block ciphers (CBC-AES and ...
0
votes
1answer
228 views

Two methods for Des Cryptography returns two different result?

I want to claculate the MAC(Message Authentication Code) CBC chiper(Ansi x9.9), i found a sample which calculates the MAC based on a cycle, in each round the encrypted reuslt must be XOR with next ...
0
votes
0answers
126 views

How to encode/decode string in Triple DES with PHP? [closed]

i am from Russia, my english may be is not nice :/ I found file encrypt here, but how to encode or decode string with PHP?
3
votes
1answer
849 views

Triple DES encryption on C# and PHP yields different results

I'm writing a simple encryption system for logging in but I've got small issue. C# encrypt function: public static string EncryptString(string Message, string Passphrase) { byte[] Results; ...
1
vote
2answers
166 views

3DES not producing consistent decryption for multiple iterations over same ciphertext

I've implemented a 3DES (TripleDES) decryption routine in my code and have noticed that it never produces the same cleartext when the supplied ciphertext is the same as the previous iteration. It ...
0
votes
0answers
109 views

How to encode json data returned from a select query with 3DES Blowfish

I have that code for now: main Php part $mysql_result = database_exec("select ID, NAME from TABLE1 order by ID"); ...
0
votes
1answer
313 views

Decrypting data from MagTek iDynamo encrypted card reader

Does anyone have reference code (even if pseudo-code) for decrypting data from a MagTek iDynamo encrypted card reader? The ANSI X9.24 standard is... lacking... in the pseudo-code and readability ...
0
votes
0answers
154 views

Saving and retrieving 3DES key from/to keychain makes decryption fail

The problem I'm facing is that when i use a plaintext NSString key and cast it to const void * to send to the CCCrypt function, both the encryption and decryption work fine. Following is the code for ...
0
votes
1answer
254 views

I'm implementing 3Des Encryption Algorithm for Long Numbers in Java

I'm implementing 3Des Encryption Algorithm for a project. I using this code as example: http://www.java2s.com/Code/Java/Security/TripleDES.htm It's working ok, but I need to send and receive ...
4
votes
1answer
181 views

Manual implementation of 3DES (academic)

For a course I am taking we are manually implementing the 3DES scheme, which is pretty straight-forward on paper (Two key, with EDE encryption). I have chosen Java as the implementation language but ...
0
votes
2answers
783 views

3DES result in Java produces different result from 3DES iOS version

I really really.... really need help........... -UPDATED- I need help because my java function gives me a different result compared with the iOS 3DES function. I posted the code from both ios and ...
0
votes
0answers
3k views

How Triple DES algorithm works

Triple DES means you need to encrypt with Key one, decrypt with key2 and again encrypt it with key 3. So this is how I coded: This is my common encryption method: cipher.init(Cipher.ENCRYPT_MODE, ...
0
votes
1answer
174 views

PHP TripleDES password encryption for registration form

I need the expertise here, i been through many resources yet could not find the answer. i am working on simple a login script with user registration, but could not find much help/ i would like to ...
2
votes
2answers
808 views

3des encryption in iphone

i am fairly new to iOS development and objective c. I am developing an application which will send encrypted data to a server. The server uses 3des with cbc and no padding. I have read most of the ...
1
vote
1answer
128 views

Why won't 3DES encrypt one block?

I'm trying to implement this question i asked in the past Securely Encrypt 64bits w/o per element overhead? In the immediate window i entered TripleDES.Create().LegalBlockSizes.First() and got ...
0
votes
1answer
215 views

C# TripleDES incorrect Input Length when decrypting

I get no error when I encrypt a string but, I get an error when I try to decrypt the string, it says that the Input.Length is invalid. Any ideas? public class Crypt { public string ...
0
votes
1answer
935 views

Switching to CBC mode in Triple DES encryption

I’m working on a mvc application over .Net, to secure my sensitive information such as info in web.config I’ve got two functions that encrypts and decrypts information using Triple DES, however I’m ...
0
votes
1answer
488 views

3DES in PHP is not same as Java

I have a 3DES encrypted string from a service on java as - 30BA1A87B3B08F8A6F69BF0E2EC7539B when i am applying 3DES encryption in PHP to check the result, i am getting a very different string ...
0
votes
1answer
471 views

3des java encryption/decryption with salt and iterations

In the decrypt class, I cant get it to correctly decrypt. I've verified in the decrypt class that my salt and my ciphertext still carries the same values before I convert them back to bytes. The ...
1
vote
1answer
255 views

How to add and retrieve TDES IV (Initialization Vector) in encrypted string

I’m working on a mvc application over .Net, to secure my sensitive information such as info in web.config I’ve got two functions that encrypts and decrypts information using Triple DES, however I’m ...
0
votes
1answer
132 views

Cannot resolve symbol GetSHA256String

I’m working on a mvc application over .Net, to secure my sensitive information in web.config I’ve got two functions in my model that encrypts and decrypts information using Triple DES, however I’m new ...
2
votes
1answer
1k views

Matching Java Triple DES result to C# one [solved]

I have the following C# implementation of triple DES byte[] bKey = HexToBytes("C67DDB0CE47D27FAF6F32ECA5C99E8AF"); byte[] bMsg = HexToBytes("ff00"); byte[] iv = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, ...
-2
votes
2answers
1k views

TripleDES algorithm: from .NET to Java

question is simple for someone and hard for me :) I have this vb.net code ( but i think meaning code is equivalent for c-sharper too) that i have to replicate in Java and i can't modify in anyway ...
0
votes
1answer
447 views

Is there a 112-bits Triple DES example implementation in Python?

Is there a 112-bits Triple DES example implementation in Python? I've found pydes, but it works only with 16 or 24 bytes for Triple DES.
4
votes
1answer
830 views

Cipher / 3DES / CFB / Java and PHP

I have a PHP servor which decrypt data in 3DES with the CFB Mode I encrypt in PHP : $montant = "500"; $message_crypte = mcrypt_encrypt(MCRYPT_3DES, "N4y1FRDRJ7wn7eJNnWaahCIS", $montant, ...
0
votes
0answers
191 views

First 8 bytes in 3Des_cbc encrypted packet are always wrong?

I am decrypting 3DES-CBC encrypted packet received from network on Cavium H/w.. First 8 byres are always wrong in decrypted packet as compared to plain packet prior to encryption.. Following Linux ...
1
vote
1answer
922 views

Bad data while decrypting information using Triple DES

I’m working on a mvc application over .Net, to secure my sensitive information such as info in web.config I’ve got two functions that encrypts and decrypts information using Triple DES, however I’m ...
1
vote
2answers
1k views

Decrypting value in 3Des using Java

I'm having trouble decrypting a value from a third party that uses 3Des. They've given me a key, an encrypted value, the mode used, and what the decrypted value should be, but so far I've been unable ...
2
votes
1answer
625 views

Decrypting a string in ColdFusion encrypted with 3DES in .NET

I'm having trouble decrypting a string that was encrypted in .NET. I saw a couple other solutions on here, mainly Decrypting a string in ColdFusion encrypted with 3DES in C# but I'm still having ...

1 2 3