Tagged Questions
The 3des tag has no wiki summary.
19
votes
2answers
31k 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 ...
14
votes
5answers
9k 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 ...
4
votes
3answers
796 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
4answers
2k views
3DES Key Size Matter in C#.Net
Below Code is Working Fine in c#.NET
byte[] key = Encoding.ASCII.GetByte("012345678901234567890123"); //24characters
byte[] plainText = Encoding.ASCII.GetBytes("lasaa");
TripleDES des = ...
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
3answers
1k views
Triple DES interoperability between .Net and iPhone?
I need to encrypt a string on the iPhone and send it to a .Net for decryption using Triple DES. I am able to encrypt/decrypt on the iPhone and with .Net, but I get different results in both platforms.
...
3
votes
1answer
294 views
php mcrypt CBC mode encryption/decryption problem
I have a problem with CBC mode when I try to encrypt/decrypt some text using php's mcrypt extension. I've created a class to perform this operations, it works fine with other modes but CBC.
The ...
3
votes
1answer
658 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 ...
3
votes
1answer
2k 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 ...
2
votes
1answer
230 views
Use Zero Padding in OpenSSL?
System.Security.Cryptography.TripleDES allow me use zero padding like this :
static TripleDES CreateTripleDES(byte[] key, byte[] iv)
{
TripleDES des = new TripleDESCryptoServiceProvider();
...
2
votes
1answer
708 views
iPhone 3Des Encrypting matching Java and .NET key issue, SecretKeySpec?
I'm trying do some encrypt something using 3des on the iphone that must match the results from java and .NET.
the code i have is:
+ (NSString*) ...
2
votes
3answers
2k views
iPhone 3DES encryption key length issue
I have been banging my head on a wall with this one. I need to code my iPhone application to encrypt a 4 digit "pin" using 3DES in ECB mode for transmission to a webservice which I believe is written ...
2
votes
2answers
3k views
using DES/3DES with python
what is the best module /package in python to use des /3des for encryption /decryption.
could someone provide example to encrypt data with des/3des on python.
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
2answers
3k views
iPhone — 3DES Encryption returns “wrong” results?
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 for data exchange. On ...
1
vote
1answer
181 views
PHP Equivalent for Java Triple DES encryption/decryption
Am trying to decrypt a key encrypted by Java Triple DES function using PHP mcrypt function but with no luck. Find below the java code
import javax.crypto.Cipher;
import ...
1
vote
0answers
176 views
TripleDES ECB Encryption in Perl that's compatible with PHP mcrypt's implementation
I'm trying to create a package in perl that is equivalent to our pre-existing class in php for handling data encryption.
The encryption type seems to be TripleDES in ECB mode however I cannot ...
1
vote
2answers
123 views
Error in converting to hex and then back to normal string
I am using the following code for a my sampled 3DES encryption i am using....
package Algorithms;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import ...
1
vote
1answer
119 views
Java SecretKey and replicating it's behaviour in C#
I am trying to replicate the encryption logic found in a Java library in a C# application.
The Java contains two methods which I have managed to replicate in C#. I get the same results in each ...
1
vote
1answer
54 views
ToadStudio passwords in settings file, security concern
I need to share a connections setting file for ToadStudio SQLeditor.
I do have some concerns about the passwords that are stored in the settings file.
The file currently looks like this:
...
1
vote
3answers
692 views
3DES Encryption in Objective-C
I am in the process of building an application for the iMac and iPhone. The goal of the application is to encrypt plain text messages, e-mails, passwords, dates, etc. I have done some research and ...
1
vote
1answer
272 views
Different 3DES standard in Capicom VS .Net System.Security.Cryptography?
I am working on standard 3DES 128bit for encryption and decryption a string. It implemented in two different environment; classic ASP (VB6) and .Net.
I think of the 3DES is standard, however, I ...
1
vote
1answer
52 views
Need library for the 3-DES cipher that supports 1-bit feedback cipher modes
I couldn't find a java library that supports the CFB, OFB or CBC mode in the 1-bit stream mode.
So far, the libraries I've tried (BouncyCastle and IAIK) only support ranges 8-64.
1
vote
1answer
110 views
TripleDESCryptoServiceProvider using hex key
I am using TripleDESCryptoServiceProvider to encrypt a series of bytes in C#. The key which is passed to me is in like this FFC7B905AD6ACB57D662115FD65FA338 which i believe is a hex. How can i get ...
1
vote
2answers
482 views
How do I use 3DES decryption in C# in OFB mode?
I need to decrypt a message that was encrypted using 3DES in OFB mode.
I have an encrypted message. I have a key. I have an IV.
I'm on a .Net platform
The encrypted message is 24 chars long in ...
1
vote
0answers
484 views
decrypting 3des ecb with md5 key on ios
I am trying to decrypt data from a .net server in an ios application. The data has been encrypted with 3des in ecb mode. I was able to successfully decrypt this same data on Android, but on ios I ...
1
vote
1answer
563 views
Encrypting/decrypting 3DES in Ruby
I have a key.bin file which content is something along the lines of:
-12, 110, 93, 14, -48, ...
This is being used by a service to decrypt 3DES content, but I need to encrypt it via Ruby.
I've ...
1
vote
1answer
668 views
What would be “openssl enc -a -e -salt -des3 -pass pass:abc123” equivalent in .NET?
My .Net application need to communicate with Linux based system which is using following command line to encrypt their messages:
openssl enc -a -e -salt -des3 -pass pass:abc123
How would be ...
1
vote
2answers
559 views
CF DESEDE encrypt() Key Length Issue
I am trying to encrypt a string using ColdFusion encrypt() with a 3rd party provided key like this:
encrypteded = encrypt('theString', 'FD52250E230D1CDFD5C2DF0D57E3E0FEFD52250E230D1CDF', ...
1
vote
2answers
761 views
Creating a Cerificate for Bouncy Castle Encryption
I am trying to create a self-signed certificate to use for encrypting an email using bouncycaste.
What would be the best way to generate a certificate?
I have tried using openssl but I have had ...
1
vote
4answers
428 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 ...
0
votes
1answer
45 views
Decrypting in PHP a string encoded 3DES with C#
I have to decrypt in PHP a string encoded with this C# class (it's here)
using System;
using System.Security.Cryptography;
using System.Text;
public static class Encryption
{
public static ...
0
votes
0answers
83 views
How do I generate an openssl -des-ede3-cbc key and iv given salt and password using sha256
I need to decrypt files from java(android) that have been encrypted with openssl, specifically
openssl enc -des-ede3-cbc -md sha256 -p -k "foobar foobar foobar" -in ~/foo.txt -out ~/foo.enc
...
0
votes
1answer
67 views
3Des Encryption/Decryption in java
I am new to Security in java.
I have two clear double length keys which was used for generating ZPK (under LMK) in Futurex HSM.
Below mentioned pin blocks were encrypted using ZPK.
Is there a way to ...
0
votes
0answers
31 views
while saving encrypted string into MYSQL database on win2k8r2
I have problem while store encrypted string in mysql database ...I am using win2k8r2 OS
my problem is I want to insert following query throw C code
REPLACE INTO ss_users SET ...
0
votes
1answer
309 views
3DES encryption different on iPhone and server
I have the following code for encrypting the request i am sending to my server. The decoding on the server is done by .NET and on the iPhone, I am using the security framework with the following code. ...
0
votes
1answer
264 views
ISO 9797 padding method 2 and MAC generation in java
I'm hoping that some of you may be able to help me on this issue.
I've used the SmartCardShell program to run a javascript code that extracts the data off a British e-Passport.
I'm trying to ...
0
votes
2answers
446 views
Decode cryptlib encoded text using Java (without cryptlib)
Hello.
First of all: I'm new to stackOverflow and to the subject I'm talking about...
I am trying to avoid the usage of the cryptlib library for TripleDES encryption in my Java application (now i am ...
0
votes
1answer
519 views
How to generate key schedule for openssl 3des decryption on iphone
I need to decrypt some data that has been 3des encoded on system running mono (C#)
I need to use openssl and decrypt on the iPhone.
I found an example which looks like this, and it runs without ...
0
votes
1answer
801 views
3DES - Decrypt encrypted text (by JAVA) in C#
Here is the situation:
The encrypted text is done in JAVA (which we have no JAVA background at all)
The method is 3DES
The padded is PKCS#5
Base 64
The decryption will be in C#, and here is the ...
0
votes
0answers
362 views
How do I use 3DES decryption in C# in OFB mode?
I posted this same question last night but I gave a very poor example of code. Hopefully this will make it easier to understand my situation.
I need to decrypt messages that have been encrypted using ...
0
votes
2answers
917 views
How to 3DES encrypt in Python using the M2Crypto wrapper?
I have a working test of a hardware device that uses RSA encryption, in Python using M2Crypto. Now I need to test a similar device that uses 3DES encryption. But I can't figure out how to use ...
0
votes
1answer
1k views
How to perform Triple DES calculations in Ruby in hexadecimal?
I'm trying to do some triple DES encryption in Ruby. I'm trying to replicate the results from this page: http://da.nmilne.com/des.html
I'm trying to replicate those result in Ruby. I suspect the ...
0
votes
4answers
3k views
How do I encrypt/decrypt a string of text using 3DES in java? [closed]
Possible Duplicate:
How do I use 3des encryption/decryption in Java?
How do I encrypt/decrypt a string of text using 3DES in java?
I found my answer. Duplicate question that didn't show ...
0
votes
1answer
230 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
2k 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
3k views
.NET TripleDESCryptoServiceProvider equivalent in Java
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 examples for DESede ...
0
votes
1answer
145 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
384 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
3k 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 = ...