elliptic icon indicating copy to clipboard operation
elliptic copied to clipboard

Fast Elliptic Curve Cryptography in plain javascript

Results 103 elliptic issues
Sort by recently updated
recently updated
newest added

What is a reason to manipulate with bytes in private key? https://github.com/indutny/elliptic/blob/e71b2d9359c5fe9437fbf46f1f05096de447de57/lib/elliptic/eddsa/key.js#L52-L63

I want to know if it is possible to use elliptic to do assymetric encryption

Heya, The docs are a little unclear to me about how to use signing – ```javascript // Sign the message's hash (input must be an array, or a hex-string) var...

js ` private async GetX25519PublicKey() { let ec = new ECC.ec('curve25519'); let keyPair = ec.genKeyPair(); let publicKey = keyPair.getPublic('hex'); let res: any = await this.TokenAPIPost('api/Account/GetX25519PublicKey', { publicKey: publicKey }); let...

Hello, I'm exploring to enhance this library to generate pkcs#8 private key from Pem format private key of ECCPrivate256v1. Can you guide me if you have any thoughts to do...

Hi, Unfortunately can't validate signatures in python with libraries like [pynacl](https://github.com/pyca/pynacl) (Ed25519). Is it possible to control prefix with this library? Maybe it would solve the problem. Any ideas on...

Hello, I have execute below command to generate private key : node -p "require('btcpay').crypto.generate_keypair()" output : ``` KeyPair { ec: EC { curve: ShortCurve { type: 'short', p: [BN], red:...

Hello, I have execute below command to generate private key : node -p "require('btcpay').crypto.generate_keypair()" output : ``` KeyPair { ec: EC { curve: ShortCurve { type: 'short', p: [BN], red:...

Working on interop between java(https://github.com/signalapp/curve25519-java) and Nodejs (Elliptic Library) Facing issue in generating a similar shared key. **Elliptic Keypair** `Public key: '4a6916193cef6a39e0dafc65b5f3ed5e4b0a8390e21b66939171f99dad9b82d3'` `Private key: '0c03ff1e715709daf08aabd039c1533909141f0d73689101f5961389a36b22f5'` **curve25519-java Keypair** `Public key: 'EA8B14FD04C8C62B1A150B999646464690E1667A2002D6C43AC8AA89F42E563B'`...