Tagged Questions
The elliptic-curve tag has no wiki summary.
9
votes
4answers
2k views
.NET implementation (libraries) of elliptic curve cryptography
Please can you suggest any implementation of elliptical curve cryptography to be used on .NET platform?
Also if you have used them, can you tell me the recommended curves that should be used?
[EDIT]
...
5
votes
3answers
1k views
Number of points on elliptic curve
If you have an elliptic curve in the form of:
y^2 = x^3 + a*x + b (mod p)
Is there a good program to calculate the number of points on this curve?
I have read about Schoof's and ...
4
votes
2answers
6k views
Encrypting/decrypting text strings using OpenSSL ECC
How can I use OpenSSL's ECC support to encrypt or decrypt a text string? I am able to generate ECC private/public keys using OpenSSL APIs, but I don't know how to encrypt plain text using those keys.
3
votes
2answers
109 views
Elliptic curve cryptography for ActionScript
Does anyone know if there is a (preferably efficient :-) ) implementation of elliptic curve cryptography for ActionScript?
The only library I know of is as3crypto, which offers great implementations ...
3
votes
1answer
1k views
Elliptic Curve Cryptography (ECC) with bouncy castle for asymmetric encryption
I want to use ECC in order to exchange a Session Key for a long-term data transmission. This key exchange should be encrypted using ECC-192bit (curvename: prime192v1). That means that i want to ...
3
votes
2answers
547 views
Tools for visualizing and implementing elliptic curve cryptography
I need to create a program which will show how elliptic curve cryptography works. I was considering using Java Swing to create the GUI, but the main problem is what tool to use to plot the elliptic ...
2
votes
1answer
92 views
Can you do basic EC operations in Java 7 without a third-party library?
Java 7 comes with SunEC, which provides ECDH and ECDSA operations. I was attempting to do basic EC operations (point addition, scalar multiplication).
I start with
ECParameterSpec p256 = ...
2
votes
1answer
83 views
How can I convert a ECDSA curve specification from the SEC2 form into the form needed by Go?
I`m trying to implement ECDSA in the curve secp256k1 in Google Go.
Secp256k1 is defined by the SECG standard (SEC 2, part 2, Recommended Elliptic Curve Domain Parameters over 𝔽p, page 15) in terms ...
2
votes
1answer
135 views
Compiler error in Haskell code
I am trying to write elliptic curve point addition using where clause. I am getting compiler error but when i translated the same code using let in expression , it works fine. Could some one please ...
2
votes
1answer
84 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
147 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
1answer
231 views
Random characters when retrieving private/public KEY (OpenSSL) from file
I am trying to make a program that after it generates a public/private key pair using OppenSSL EC function EC_KEY_generate_key store them in separate files and retrieve them to generate an ECDH KEY.
...
2
votes
0answers
260 views
JavaCard random number generation speed
I'm implementing an authentication protocol using ECDSA on javacard. The funniest thing I noticed was the "secure random number genrator" takes 700ms for execution.
This can be considered as ...
1
vote
0answers
86 views
Running msieve in parallel
I have a very non-standard task and now the deadline for it is approaching :)
Factorizing 512bit number with msieve program would take at least about 3-4 weeks.
The point is to do this more ...
1
vote
2answers
89 views
How to calculate point addition using jacobian coordinate-system over elliptic curves
I'm writing a small project of elliptic curve cryptography, and the program works well when I use affine coordinate system, which means each point is represented by 2 coordinates (x',y').
Now I'm ...
1
vote
1answer
118 views
Ways to define a curve
I'm trying to give shapes in my physics engine roundness/ curvature.
I am aware of various methods for mathematically defining curves; such as bezier-cruves, ellipses, etc. However I am not sure ...
1
vote
1answer
59 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
2answers
157 views
PyECC Example - Python Elliptic Curve Cryptography
I am working with PyECC - it is the only elliptic curve cryptography module for python that I can find. I was wondering if anyone had an example of how to use the module? I'll try reading the source, ...
1
vote
1answer
119 views
How do I cipher plaintext using ECDH?
I'm looking for sample Java code to implement the cipher for ECDH encryption. I've already found the method to get the keys required but still haven't found a solution to encrypt the text. Appreciate ...
1
vote
2answers
160 views
Verify signature using elliptic curve cryptography
I need to verify a signature of a message which contains several values. The only parameters I have are the signature, the public key and the values itself. The algorithm used for creating the ...
1
vote
2answers
128 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
2answers
204 views
encrypting an email using an EC X509 certificate
I'm trying to use BouncyCastle's SMIME package to create an encrypted message using ECDSA X509 certificates. According to BouncyCastle's release notes, this has been supported since 1.32 (I'm using ...
1
vote
1answer
180 views
BouncyCastle error: can't recognise key type in ECDSA based signer
I have been doing some simple testing with BouncyCastle's crypto library and RSA's crypto library. What I am doing is generating a private/public key pair like so:
KeyPairGenerator kpg = ...
1
vote
1answer
141 views
Group theory within Cryptography regarding order of elements in a group of integers Z*p
I was kinda thrown in the deep end into group theory and i am a bit lost for a Cryptography class i have.
Basically a practical i have to implement in java is,
order(prime number, list of factors ...
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
296 views
Fileformat for EC public/private keys?
If I wanted to store both a private and a public key in a single file, what would be the easiest format to use? Especially if I'm planning to use the BouncyCastle library for Java?
1
vote
1answer
793 views
Is there a difference between ECDH and ECDSA keys?
I'm building a network application that uses BouncyCastle as a cryptography provider. Let's say you have this to generate a keypair:
ECParameterSpec ecSpec = ...
1
vote
2answers
88 views
1
vote
1answer
292 views
How to calculate control points for cubic curve, which approximates an elliptic arc?
Almost all vector graphics applications (like Corel) approximate elliptic arcs with several cubic Bezier curves. I need to add similar functionality to my application. So my question is: how to ...
1
vote
1answer
70 views
Quadratic extension field (or complex numbers) with OpenSSL's BN?
Does OpenSSL have any support for operations in the quadratic extension field (or, alternatively, operations with complex numbers) using the BN API?
If not, are there any other open source libraries ...
1
vote
2answers
228 views
Delphi LogN and Power - SuperEllipse functions - algorithm
How can I isolate the 'slope' parameter in the super ellipse function given by:
MyY := (1.0- (power(1.0-power(x, 2.0/Slope), Slope*0.5)))
when I know 'x' and 'MyY' ?
(the function is always used in ...
1
vote
1answer
83 views
Moving ECDSA from COM DLL to .NET
I have an ActiveX DLL that uses ECDSACom from Dragongate Technologies to create a signature for a product license. The product, when starting, uses the signature generated, the public key and the ...
1
vote
2answers
338 views
Is it possible to use elliptic curve cryptography for encrypting data?
So far I have only seen it used in digital signatures and key agreement protocols. Can it be used like RSA to actually encrypt data? Are there any libraries for this?
Edited:
I need something like ...
1
vote
2answers
892 views
Implementation of ECC in Java
While trying to encrypt a given input using Elliptic Curve Cryptography in Java I'm using the following algorithms for generating the cipher and the key:
KeyPairGenerator g = ...
1
vote
2answers
710 views
Use of Curve25519
I'm currently investigating the use of curve25519 for signing. Original distribution can be obtained here and a C code implementation here or here.
Bernstein suggest to use ECDSA for this but I could ...
1
vote
1answer
681 views
Obtaining a signed x509 when using ECDSA keys
I am trying to sign some X509 certificates. My root private key is an ECDSA secp384r1. I am using bouncy castle. What seems to happen is that when generating the certificate signature, the Signature ...
1
vote
1answer
1k views
Encrypting a message using ECDSA in OpenSSL
How do I set the private key for encrypting messages when using ECDSA in OpenSSL programmatically? I have the following code:
static int create_signature(unsigned char* hash)
{
EC_KEY *eckey=NULL;
...
1
vote
2answers
320 views
Turn an byte encoded Key back into it's original ECPublicKey in Bouncy Castle
In Java I have a ECDH public Key that I am sending as a byte array.
Once I have received the byte array how can I turn it back into a public key?
I am using Bouncy Castle but a Java solution would ...
1
vote
4answers
1k views
How do I feed OpenSSL random data for use in ECDSA signing?
I want to feed OpenSSL specific data for use as random seed during the signing of data with an EC key. I'm doing this to compare my application with another reference one (closed source). That utility ...
0
votes
1answer
47 views
Sending a Public Key over SMS
I'm currently trying to develop an encryption app for Android using ECDH and BouncyCastle. So far what I've implemented is Public and Private Key generation on the application as per the code below.
...
0
votes
0answers
48 views
Secp256k1 test examples
Are there any available test cases for testing elliptic curves like secp256k1 (Korblitz curves from http://www.secg.org/collateral/sec2_final.pdf)? For curves like P192 there are for example those ...
0
votes
1answer
72 views
Primes in PHP, elliptic curve
how i can calculate receiving a number K, K return the next prime number greater than 2 ^ 57 + 1 ? some 1 can help me with that ?
0
votes
0answers
214 views
Problems implementing ECDH on Android using BouncyCastle
I am trying to implement ECDH on Android and I managed to source for a code that tests the Key Agreement (Full code is shown right below)
Unfortunately when I run the code it gives me a ...
0
votes
1answer
223 views
Elliptic Curve Encryption
Please provide me an example using the Bouncycastle library showing how to add two points on an elliptic curve.
I tried the following code but i didn't get the same result that should happen ...
0
votes
0answers
120 views
FromXmlString(Key) in ECDsa class
i want to know if there 's a possibility to create a signature ecdsa, using a key pair (ecdsa) generated with bouncy castle ; the purpose is to Use FromXmlString method in c #,
now I want to do the ...
0
votes
0answers
55 views
How can I test the quality of public/private keys [closed]
I have to generate a large number of public/private key pairs using elliptic curves (ECDSA algorithm).
How can I assess the quality (randomness, entropy, etc) of my keys?
0
votes
1answer
582 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
* ...