7
votes
2answers
6k views
How do I use 3des encryption/decryption in Java?
Every method I write to encode a string in Java using 3DES can't be decrypted back to the original string. Does anyone have a simple code snippet that can just encode and then decode the string back …
2
votes
1answer
153 views
Why does changing one bit in a Triple DES key or initial value not give different encrypted data?
I'm using pyDes to encrypt some data. I wanted to demonstrate that if you change even one bit in the key or initial value, the encrypted data would be totally different. I set up the 16-byte key to …
2
votes
5answers
877 views
how to use RSA to encrypt files (huge data) in C#
I'm new to encryption. I need to implement asymmetric encryption algorithm, which i think it uses private/public key. I started using a sample of RSACryptoServiceProvider. it was ok with small data to …
1
vote
5answers
110 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.
1
vote
4answers
106 views
Which library would you consider on linux for DEA (Data Encryption Algorithm)?
I need a 3DES encrypt/decrypt library for my project.
Do you know an implementation working on linux ?
Linux is the target platform, but I essantially compile/debug on Windows. Therefore it could be …
1
vote
3answers
288 views
iPhone — 3DES Encryption returns “wrong” results?
Hello fellow developers,
I have some serious trouble with a CommonCrypto function. There are two existing applications for BlackBerry and Windows Mobile, both use Triple-DES encryption with ECB mode …
1
vote
1answer
429 views
Encrypted data size while using Triple DES
I intend to use TripleDES in one of my project. I was doing some experiments to be comfortable with it. I understand block size of triple DES is 8 bytes so I assume that if give 8 byte of data, I …
0
votes
5answers
172 views
How do I encrypt/decrypt a string of text using 3DES in java?
How do I encrypt/decrypt a string of text using 3DES in java?
0
votes
1answer
33 views
Does WCF + net.tcp support 3DES?
I currently have an open WCF service running w/ netTcpBinding; however, I need to encrypt this channel. Does WCF support 3DES, or should I just handle the encryption/decryption on my authorized …
0
votes
2answers
178 views
TripleDES Encryption - .NET and ColdFusion not playing nice
I'm trying to exchange encrypted data between my ASP.NET application and another developer's CF app using TripleDES.
Here's his CF code (fictitious key and IV of course):
<cfset variables.theKey …
0
votes
4answers
240 views
.NET TripleDESCryptoServiceProvider equivalent in Java
Hello nice people,
Please, just don't ask me why. I just have this code in .NET that encrypt/decrypt strings of data. I need now to make 'exactly' the same funcionality in java. I have tried several …
0
votes
1answer
31 views
Implementing des-ede2 in vb.net
Can anyone help me getting started with this? We have a current keygen for a set of our apps that's using des-ede2 in C++.
I need to make my vb.net app validate keys generated by that keygen. …
0
votes
1answer
118 views
how to wrap/store the key of TripleDESCryptoServiceProvider
I'm using DES encryption, and I want to store the key of TripleDESCryptoServiceProvider.
But the key consists of (Key + IV),
I was trying to save them in an XML file using
XmlTextWriter
…
0
votes
2answers
531 views
Using MCrypt to Decrypt a Ciphertext (3DES CBC Mode)
I have a ciphertext, encrypted in 3DES CBC mode, and I'm having some trouble decrypting it. I have the following information (not actual values):
<?php
// Three 16 character long keys
$key1 = …
