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.
0
votes
0answers
35 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
52 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 ...
-1
votes
0answers
36 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
1answer
70 views
Android - How to use 3DES algorithm
On the server side, the encyption/decryption of the password field is done like blow:
Imports System.Security.Cryptography
Imports System.IO
Imports System.Text
Public Class ...
0
votes
2answers
52 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
150 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
216 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
196 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
239 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
238 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
228 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
199 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
163 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
144 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
206 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
55 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
216 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
123 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
804 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
157 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
101 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
271 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
147 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
230 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
177 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
744 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
170 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
765 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
123 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
204 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
877 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
451 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
441 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
237 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
125 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
442 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
780 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
183 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
870 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 ...
0
votes
0answers
109 views
3Des not working on iPhone 3GS or lower devices
I am using 3des encryption/decryption in my iPhone application. All functions are working perfect if I compile application directly to iPhone (3GS 4.2) from Xcode. But if i use archive and than ...
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
608 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
vote
1answer
473 views
DESede (3DES) Encryption in RAILO CFML
I've been trying for many days to try and solve this issue.
A 3rd Party webservice requires me to send encrypted data using 3DES with ECB
and PKCS7padding - They're using .NET
The encrypt function ...
0
votes
1answer
149 views
What is triple DESm (3DESm) encryption method? Is it much different from 3DES?
I have to decrypt an encrypted message in C program which has been encrypted using 3DESm method in CBC mode. It looks quite different from the encrypted message that we get from 3DES method. Generally ...
0
votes
1answer
207 views
Is it possible to use CBC mode of 3DES decryption method to decrypt an encrypted message of 14 characters?
I read about the CBC mode of encryption in wikipedia where it said that in 3DES method a message is divided into 16 digit blocks each and then they are encrypted or decrypted. Every block which is ...
0
votes
1answer
110 views
From where can I get a library for c which will help me to write a C program to decrypt through 3DES in CBC mode?
I want to write a simple program where I can call the functions from a library and pass them the encrypted data as input and get the output as the decrypted data.
Which C library would be suitable for ...
1
vote
3answers
377 views
Emulate 3DES EDE using only DES
My device doesn't support full 3DES (EDE). How can I emulate one using standard DES? Encryption mode is CBC.

