Tagged Questions

Diffie-Hellman, commonly abbreviated DH, refers to a public key cryptographic protocol used by two parties to produce a common shared secret. It is most commonly used to implement key agreement, by using the properties of exponentiation modulo a large prime. Another variant uses the properties of elliptic curve groups and is commonly abbreviated ECDH.

learn more… | top users | synonyms (1)

4
votes
1answer
223 views

Determining a Private Key (Diffie-Hellman)

I've been given a challenge and it has to do with testing a friend's encryption process. It's a Diffie-Hellman exchange process, and here are the known variables / constants: P, G my generated ...
4
votes
2answers
494 views

Choosing a encryption key from Diffie-Hellman output

I implemented Diffie–Hellman key exchange in Java with some large groups from RFC 3526. My output is a fairly large array of bytes. Is it safe to use the first 448 bits (56 bytes) of the output for a ...
3
votes
2answers
124 views

continued encryption with diffie-hellman shared key

I'm currently working on a protocol, which uses Diffie-Hellman for an key exchange. I receive a packet, which consists of an aes-128 encrypted part and a 128 Bit DH Public Key. In a very last step in ...
3
votes
2answers
307 views

C++ tutorial on Diffie Hellman

Is there a C++ tutorial for Diffie Hellman key exchange using OpenSSL? I keep searching and I can't find anything. If you know of a tutorial, I would be grateful for a link to it. Thank you.
3
votes
3answers
468 views

Generator G's requirement to be a primitive root modulo p in the Diffie Hellman algorithm

Having searched, I've found myself confused by the use of P and G in the Diffie Hellman algorithm. There is requirementy that P is prime, and G is a primitive root of P. I understand the security is ...
3
votes
1answer
437 views

Generating Large Prime Numbers for Diffie-Hellman in Ruby

I'm writing an implementation of a diffie-hellman key exchange in ruby for a project for one of my university classes. I need to generate large (secure) prime numbers of at least 500 bits length. Any ...
3
votes
3answers
626 views

Diffie-Hellman in Silverlight

I am trying to devise a security scheme for encrypting the application level data between a silverlight client, and a php webservice that I created. Since I am dealing with a public website the ...
3
votes
2answers
185 views

Selection of parameters in Diffie-Hellman

maybe it's not so proper to ask this question here... anyway, I'm trying to use the gmp library for the implementation of DH, but the problem here I got is: Once, when I was doing the tests to ...
3
votes
2answers
614 views

I'm using Wincrypt for Diffie-Hellman— can I export the shared secret in plain text?

OK-- thanks to Mike, I was able to get Wincrypt to generate a Diffie-Hellman keypair. I figured out out to export the public key, and how to import the other party's public key. According to the ...
2
votes
1answer
79 views

Public key length

I was wondering if there was (and I hope there is) a standard for public key size for ECDH (Elliptic Curve Diffie-Hellman) and ECDSA (Elliptic Curve Digital Signature Algorithm) for every curve type ...
2
votes
1answer
146 views

ECDH implementation in PHP

I was wondering if there is a ECDH PHP implementation floating somewhere on the web? I've found the PEAR implementation. But that's only Diffie-Hellman there are a lot more parameters to set for an ...
2
votes
2answers
237 views

Peer review for a cryptographic key exchange

I have been playing around with Bouncy Castle (java) for the last few days, and I've reached the point where I believe I can securely exchange secret keys with a Diffie-Hellman exchange. Having read ...
2
votes
1answer
2k views

AES encryption: InvalidKeyException: Key length not 128/192/256 bits

I'm trying to encrypt a string on Android with AES. The symmetric key is determined previously with the Diffie-Hellman algorithm and seems to be ok (Key Length is 128 Bit, see below). Nevertheless, I ...
2
votes
1answer
363 views

Diffie-Hellman set generator parameter in BouncyCastle

I want to generate new DH parameter as defined in PKCS #3: DHParameter ::= SEQUENCE { prime INTEGER, -- p base INTEGER, -- g privateValueLength INTEGER OPTIONAL } using BouncyCastle. My ...
2
votes
1answer
173 views

ColdFusion 8 Diffie-Helman Encryption

I am integrating with a 3rd party that requires I use the Diffie-Hellman encryption algorithm. The CF docs indicate that this is a supported algorithm. When I attempt to call Encrypt() with either ...
2
votes
2answers
685 views

diffie-hellman ssh keyxchange

I've set out to make a primitive SSH client in C#; you might remember me from posts such as http://stackoverflow.com/questions/2872279/c-primitive-ssh-connection-lowlevel hehe. Anyway, things are ...
2
votes
6answers
2k views

Diffie-Hellman in place of SSL?

Can a Diffie-Hellman key exchange algorithm be used to encrypt client-server communication on a web-page in place of SSL? If it can, what are the disadvantages (i.e. why does the standard use SSL ...
1
vote
3answers
98 views

Convert python long/int to fixed size byte array

I'm trying to implement RC4 and DH key exchange in python. Problem is that I have no idea about how to convert the python long/int from the key exchange to the byte array I need for the RC4 ...
1
vote
1answer
56 views

Windows CNG ECDH Secret Agreement structure

I've spent a few days by searching what structure does ECDH secret agreement have, but no success. I found in MSDN that the NCryptSecretAgreement function sets a pointer to an NCRYPT_SECRET_HANDLE ...
1
vote
4answers
109 views

Securing an android application

I have 'secured' the communication between my android application and a tls server providing a financial transaction service, currently in development. The security credentials are stored in a BKS ...
1
vote
3answers
57 views

Protecting ECDH against MITM attacks

I am working on a project that requires an ECDH key exchange. I am trying to understand how to protect against MITM attacks. I can sign the public key and send a signature along with the public key ...
1
vote
2answers
125 views

Length of Diffie-Hellman Elliptic Curve Private Key

I am using the FIPS 186-3 recommended curves for Diffie-Hellman Elliptic Curves. I'm trying to determine the max length of the private keys, according to RFC 5915 it should be: ceiling (log2(n)/8) ...
1
vote
3answers
308 views

Diffie Hellman and AES on Android

I am trying to use Diffie Hellman for key exchange and AES to encrypt data with keys. Can anyone provide me a suitable work sample for android ?
1
vote
1answer
103 views

What is the best library I can use for BlowFish/DH?

What is the best library I can use for BlowFish/DH, because I was using BouncyCastle but it looks like it does not do what I want, so I was wondering if there is another library I can use so it let me ...
1
vote
1answer
199 views

Difference between Bouncy Castle ECDH and the .net4 native ECDiffieHellmanCNG

I've been able to generate a private key using the ECDiffieHellmanCNG in .net4 and I've also used the Bouncy Castle C# library to successfully generate private keys. I want to know why the .net 4 ...
1
vote
1answer
426 views

SSL key exchange encryption techniques [closed]

what are the differences between the three key exchange algortihms namely Anonymous DH, Ephermal DH and fixed DH?
1
vote
1answer
166 views

Unknown value in SSH2 Diffie-Hellman Group Exchange Reply packet

I'm trying to understand more about how SSH works. I'm using Wireshark to grab the packets going between my machines (OpenSSH running on both ends). I'm stuck at the Diffie-Hellman Group Exchange ...
1
vote
0answers
172 views

how to generate ValueLink merchant working keys

I am trying to generate ValueLink merchant working keys using a modified version of the apache ofbiz ValueLinkApi Class - src I've modified it only to the extent of making it a standalone class that ...
1
vote
1answer
300 views

DH Keypair generation time on Android

This is the code that I'm using to generate a DH keypair: KeyPairGenerator keyGen = KeyPairGenerator.getInstance("DH"); keyGen.initialize(1024, new SecureRandom()); KeyPair ackp = ...
0
votes
0answers
38 views

OpenSSL gost engine issue

I'm trying to implement ECDH key exchange GOST 34.10-2001 using OpenSSL 1.0.0d. I'm loading gost engine like this: ENGINE * e = ENGINE_by_id("gost"); if(!e) { e = ...
0
votes
1answer
33 views

Diffie-Hellman implementation for iOS?

This is my first question here as before I found all workarounds from another questions. The question is very short: Does anyone know if there is any Diffie-Hellman implementation for iOS? I ...
0
votes
0answers
156 views

Using Bouncycastle to Perform Diffie-Hellman Key Exchange between Java and .NET

I want to use bouncycastle in order to perform Diffie-Hellman key exchange between two software components (Alice and Bob). Alice and Bob have their own key pair, issued from the same CA. However, ...
0
votes
0answers
27 views

How to embed Diffie-Hellman public key in a certificate?

Is it possible to exchange DH public key through certificates in java? In other words, are there any standard methods in java to embed DH public key in a certificate?
0
votes
0answers
62 views

How to send Diffie-Hellman public key through a certificate in java [closed]

Possible Duplicate: How to embed Diffie-Hellman public key in a certificate? i am currently working on ad hoc network security project but stuck with the problem of sending ...
0
votes
0answers
139 views

Difference between EDH/DHE and DH [closed]

Possible Duplicate: SSL key exchange encryption techniques Some of the cipher suites of SSL/TLS are mentioned as DH and some as EDH. Whats the difference between Ephemeral Diffie Hellman ...
0
votes
1answer
113 views

Encrpytion between iPhone and a php page with Key exchange

I need to send data to and from a php-page from my iPhone application and now I have a couple of questions to get it right the first time, and the best result:) Lets start with the transfer of data. ...
0
votes
0answers
43 views

Diffie Hellman WCF Token

does anybody knows a good implementation of a custom WCF token that uses the Diffie Hellman algorithm?
0
votes
4answers
246 views

Security review of an authenticated Diffie Hellman variant

EDIT I'm still hoping for some advice on this, i tried to clarify my intentions... When i came upon device pairing in my mobile communication framework i studied a lot of papers on this topic and ...
0
votes
1answer
781 views

Diffie-Hellman — Primitive root mod n — cryptography question

In the below snippet, please explain starting with the first "for" loop what is happening and why. Why is 0 added, why is 1 added in the second loop. What is going on in the "if" statement under bigi. ...
0
votes
1answer
668 views

How To Generate Parameter Set for the Diffie-Hellman Key Agreement Algorithm in Android

I am working on mobile/server security related project. I am now stuck in generating a Diffie-Hellman key agreement part. It works fine in server side program but it is not working in mobile side. ...
0
votes
2answers
527 views

RSA encrypted Diffie-Hellman handshake

Would a RSA encrypted Diffie-Hellman handshake enable secure communication? I'm encrypting communication from a silverlight client to a php webservice. The silverlight client initiates they key ...
0
votes
1answer
577 views

How does the elliptic-curve version of Diffie-Hellman cryptography work?

Does the Elliptic curve diffie hellman calculation look any different from the standard one defined here: /* * The basic Diffie-Hellman Key Agreement Equation * ...
0
votes
1answer
165 views

How does the IPSec Key Exchange protocol work?

I need to fully understand the IPSec Phase 1 negotiation. now, I break this to 3 steps: Algorithm negotiations Key Exchange Data Identification I'm using Wireshark to investigate the process and ...
0
votes
2answers
561 views

I have P & G— how do I use the Wincrypt API to generate a Diffie-Hellman keypair?

There's an MSDN article here, but I'm not getting very far: p = 139; g = 5; CRYPT_DATA_BLOB pblob; pblob.cbData = sizeof( ULONG ); pblob.pbData = ( LPBYTE ) &p; CRYPT_DATA_BLOB gblob; ...