In mathematics, an elliptic curve is a smooth, projective algebraic curve of genus one, on which there is a specified point O.
2
votes
1answer
21 views
CNG Import ECC Pub/Priv Keyfrom file
I've been trying to find how to import an ECC key from a file by ANY MEANS for ages. I have tried accessing an ECC cert from the Windows certificate store, from a .p12 file, and from a PKCS#8 OpenSSL ...
1
vote
2answers
32 views
ECC Curve Modulus
What is the modulus of an ECC P-256 key? Would it be 32 bytes? I seem to only be able to sign/encrypt a 32 byte data buffer with this key.
For RSA, I know that a 1024 bit RSA key has a modulus of ...
-5
votes
0answers
40 views
Elliptic curve Pintsov-Vanstone signature example [closed]
The ECPVS scheme is a signature scheme that improves upon the Elliptic Curve Digital Signature Algorithm (ECDSA) —the current elliptic curve digital signature standard in ANSI, IEEE and NIST — in the ...
0
votes
2answers
34 views
Can't bridge Elliptic Curve Diffie-Hellman with javascript
I know this is a very specific question but I tried to exchange keys between php and a client using the Elliptic Curve Diffie-Hellman algorithm (ECDH) based on 2 libraries that seem sound:
...
1
vote
3answers
89 views
Drawing a portion of an ellipse programmatically with a Bezier or an Elliptical path — SVG and raphael.js
I'm trying to draw a bezier curve surrounding an ellipse with a given margin :
I want to achieve this programmatically, so if I changes the ellipse size, the curve will follow it.
At the moment ...
2
votes
1answer
380 views
Perl - How to convert bitcoin private keys to addresses with elliptic curve math
I have a large dump (~25K) of all the private keys from my bitcoin wallet, but I don't have a mapping to the associated addresses for each private key. I need the address before I can recreate the ...
2
votes
0answers
99 views
Scalar Multiplication of Point over elliptic Curve
I am implementing Elliptic Curve Point arithmetic operation on NIST specified curve "p192". For testing purpose I have taken example points shown in NIST Routine document for the curve p192.
I am ...
1
vote
1answer
79 views
“Wrong format: RAW bytes needed” on trying to encrypt in Elliptic curve crypt
I am trying this code(see CODE below) i got from net for Elliptic curve crypt.
and it get this error. i have printed the some extra details in the output.
java.security.InvalidKeyException: Wrong ...
2
votes
2answers
182 views
Point subtraction in elliptic curve cryptography
I want to do point subtraction on an elliptic curve on a prime field. I tried taking the points to be subtracted as (x,-y log(p)) but my answer doesn't seem to match.
This is how I tried to do the ...
2
votes
1answer
229 views
ECDH Shared secret derived from OpenSSL and BouncyCastle are not always the same although constants and domain parameters are the same for both
I'm trying to implement AES cryptography between an iOS app and a java servlet. Java servlet uses BouncyCastle library while iOS app uses OpenSSL. Although I've used same public/private key pair and ...
0
votes
1answer
119 views
OpenSSL command line secp384r1 / SHA-256 digital signatures
Is it possible to generate digital signatures using secp384r1 / SHA-256 from the OpenSSL command line (I'm using version 1.0.1c)? After some experimentation I can generate signatures with SHA-1 using: ...
0
votes
0answers
34 views
Pub/Priv from Certificate for ECIEC Bouncy Castle
I've been trying to implement the test class for ECIEC in the Java BouncyCastle API for days from a PKCS#12 file. The problem is that the test class builds the keys from individual parameters while ...
10
votes
3answers
282 views
Elliptic Curve Crypto in iOS
I'm trying to incorporate ECC into an iPhone app that is being used for secure communications but I'm having a hard time finding a proper library / tutorial on how to do this in objective-c. I read ...
3
votes
0answers
257 views
What ECC certificate would work with the following PKCS7/CMS code?
We are using the PKCS#7 / CMS data format standard to encrypt/decrypt/sign/verify sensitive payloads. Currently we're using 2048 and 4096 bit RSA certificates (and keys) for our PKCS7 / CMS and its ...
0
votes
1answer
127 views
Determine certificate key type (RSA vs EC) in .NET or BouncyCastle?
Currently we have a routine that Signs a byte[] given a certificate (and it's private key). However, the type of certificate/keys is hardcoded as "Certificate with RSA keys". That code is :
public ...
-1
votes
1answer
88 views
Elliptic curve example [closed]
I would like to use ECC to sign messages. I trying searching in google, but I was not able to find a commented code to understand how it works.
Do you know some documentation that explains not only ...
0
votes
0answers
30 views
How to calculate a lift in elliptic curve cryptography?
A given Elliptic curve (Ep) defined over finite field Zp where p being a prime number. How to calculate a lift on Ep to find Ep2(square of p).
0
votes
1answer
91 views
How to generate keypairs and encrypt with PHPECC
Using the PHPECC package from MDanter, how can I generate public/private key pairs and encrypt a message?
I found this library here: https://github.com/mdanter/phpecc
But no tutorial or explaination ...
4
votes
1answer
267 views
Reading back ECPrivateKey from JKS KeyStore
I'm trying to read back an ECPrivateKey (including certificate chain) from a JKS KeyStore as shown in the code below.
String storeType = "JKS", storePass = "secret", storePath = "c:/keystore.ks";
...
3
votes
1answer
388 views
Access PFX File ECC PrivateKey For Symmetric Key Generation in Java
I'm writing a program (in Java using the Bouncy Castle API) that encrypts files with AES-256/GCM with a key generated by ONE EC key pair. I have the symmetric encryption portion working perfectly but ...
2
votes
2answers
164 views
Elliptic Curve Cryptography in Java 6
Is it possible to use Elliptic Curve Cryptography in Java 6 by default? I don't want use any third party providers like Bouncy castle.
0
votes
2answers
171 views
openssl elliptic curves
I have an elliptic curve EC and I need to find such an point G of EC which coordinate is the smallest non-negative integer of all points on the curve. I need it for an implementation of ECOH hashing ...
2
votes
0answers
39 views
Trying to reconcile elliptic curve error
I am trying to do the following:
I have a piece of software which is using ECC to generate a standard Rijndael key (NOT AES... There is a difference: AES only supports key sizes of 128, 192, and 256 ...
3
votes
1answer
131 views
Moving multiple sprites in elliptical path with uniform speed
I'm trying to move multiple sprites (images) in an elliptical path such that distance (arc distance) remains uniform.
I have tried
Move each sprite angle by angle, however the problem with this is ...
-4
votes
1answer
286 views
ECDH Example c# with bouncycastle? [closed]
Is there any examples of a ECDH key-exchange that uses the bouncycastle lib??
The documentation is bad :/
0
votes
0answers
131 views
Extracting a part of OpenSSL into one single, preprocessed source file
I'm currently researching the possibility of speeding up ECDSA signature verification via OpenCL in Bitcoin.
For this task I will first of all need both a bignum implementation in C (since OpenCL ...
0
votes
1answer
119 views
Is there any Elliptic Curve algorithm equivalent to RSA's asymmetric encryption?
I've been searching but I cant find anything about this... only EC Diffie-Hellman with symmetric cryptography, which is exactly what I do not want :(
Imagine this:
generate a random private key, k
...
1
vote
1answer
150 views
Convert ECIES ECP CryptoPP to JAVA
I have a 202 byte key and that is used to decrypt a binary file.
StringSource keyStr( key, Z3_KEY_LENGTH, true );
AutoSeededRandomPool rng;
ECIES<ECP>::Decryptor ellipticalEnc( keyStr );
...
0
votes
2answers
174 views
Find a solutions for segmentation fault in c
I am porting elliptic curve cryptography for contiki os (Based on pure c). I am getting an error of segmentation fault. I used xxgdb to debug and still I can't found a reason why is that. And I do not ...
2
votes
1answer
751 views
How do I obtain the public key from an ECDSA private key in OpenSSL?
I am providing this sample application to show my problem
#include <stdio.h>
#include <stdlib.h>
#include <openssl/ec.h>
#include <openssl/bn.h>
int main()
{
EC_KEY ...
2
votes
1answer
510 views
Java 7 keytool Elliptic Curve Encryption
I'm trying to create a keystore using keytool with a keyalg ECC.
This should be possible according to Oracle.
I quote:
Area: Tools
Synopsis: The keytool and jarsigner tools now support the ...
1
vote
0answers
268 views
Elliptic curve ElGamal Java implementation
Is there a simple implementation (using Java BigInteger) of ElGamal elliptic curve cryptosystem with key generation, encryption and decryption functions; one that could be used to explain to ...
0
votes
1answer
413 views
NFC compatible tag to use for elliptic curve encryption
I have an Android project that requires me to use an NFC tag for encryption/signing data using an elliptical curve algorithm.
I need the tag to be able to perform the crypto itself using a keypair ...
1
vote
3answers
389 views
Can Elliptic Curve Cryptography be used as a block ciper?
I am trying to use asymmetric encryption to encrypt firmware. The bootloader will decrypt and update the flash. This is on a embedded device with 32 bit CPU executing at 60MHz.
I want to use ECC due ...
1
vote
1answer
281 views
Microsoft PlayReady DRM P160 Eliptical Curve Parameters
I am attempting to create the properly DER encoded ECC parameters for the custom Microsoft P160 PlayReady curve to feed into a HSM. I have found a few sources that specify the definition of the P160 ...
3
votes
0answers
315 views
How to use ECC in iOS
Is there any example for use ECC in iOS?
I noticed that the kSecAttrKeyTypeEC in Apple Developer Documents, but I can't use it to generic Key pair.
Blow code is modified from the example ...
0
votes
1answer
220 views
Point multiplication in elliptic curvves
I found the following code here on Stack Overflow for arithmetic, viz. addition, doubling and multiplication, for elliptic curve points. I tried running it and used test cases given in the following ...
1
vote
2answers
337 views
Generate base point ( G ) of elliptic curve for elliptic curve cryptography
How do I generate a base point or generator for a elliptic curve in Java?
I'm working on developing a Java package that can be used to implement some elliptic curve cryptography algorithms, and I ...
1
vote
2answers
709 views
Elliptic Curve Cryptography algorithms in Java
We're a pair of amateurs in cryptography. We have to implement different algorithms related to elliptic curve cryptography in Java. So far, we have been able to identify some key algorithms like ...
0
votes
0answers
162 views
Elliptic curve equation in java [closed]
I want to develop a program in Java that encrypts and decrypts files using the ECC techniques.
I don't want to use any ECC API but I hope that I can implement some similar functions by myself.
The ...
0
votes
1answer
140 views
Verification SIgnature ECDSA using SAGE
In the ECDSA algorithm (verification signature) you have to calculate a new point using the next formula: (x0,y0) = u1*P+U2*P_a
How can I calculate the coordenates of this new point?, i try that ...
1
vote
1answer
125 views
Calculate the y coordinate of a point of a elliptic curve with SAGE?
I defined with SAGE:
p=(10^34+1000).next_prime()
E=EllipticCurve(GF(p),[0,57])
My problem is:
I know the x coordinate of a P of the Elliptic Curve 1407284663933896236729058440000
How can I ...
0
votes
0answers
334 views
Matlab elliptic curves RMP function
function [X,Y,n] = PC(A,B,p)
% This function m-file finds and plots all the points that lie in E_p(A,B)
% These points are on the curve y^2 = x^3 + AX + b (mod p)
RHS = zeros(3,1);
LHS = ...
1
vote
2answers
605 views
Points calculated using this elliptic curve point multiplication do not lie on the curve and this class brings Arithmetic exception
I get stack on my error of point multiplication using standard projective coordinates. I don't know what i missed but the multiplied points do not lie on the curve and some times it outputs ...
0
votes
0answers
173 views
How to encrypt and send data via ECDH, with only a publickey (peerkey) provided?
I'm coding a program that needs asymmetric cryptography. My approach is using Python's M2Crypto and I have chosen ECDH as the algorithm. However, I also want the procedure to be as simple as RSA, ...
2
votes
2answers
593 views
How Do i compress or encode the Elliptic curve public key and put it over the network?
I am developing Distributed digital signature that signs a document and send it through network to the Application Server.I am using socket programming in java to do it. I think the public key should ...
1
vote
1answer
361 views
ECDSA with SHA256 in Bouncy castle throws No Such Algorithm Exception
I am trying to generate a signature using ECDSA with SHA256 in Bouncy Castle as follows,
I add the provider in the begining
I have built the ECPrivatekey
Signature s_oSignature = ...
1
vote
2answers
541 views
Encryption using BouncyCastle's Elliptic Curve Crypto API in Java
I am looking for a sample code to Encrypt/decrypt a byte[] using 'ECKey' in bouncy-castle's java implimentation. Especially i need to know how to specify Algorithm, padding etc.
Thanks in Advance
10
votes
1answer
828 views
ECDSA signing file with key from store C#.Net CNG
I'm trying to sign a file with ECDSA using the CNG API and a certificate from the Microsoft Certificate Store. I've read through a lot of documentation and and near done but I get hung up on importing ...
1
vote
0answers
143 views
PHP openssl_sign() ecparam key type not supported in this PHP build
openssl_sign is returning the signature string but printing this error. I am using elliptic curve key
Warning: openssl_sign() [function.openssl-sign]: key type not supported in this PHP build! in


