python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
ECIES encryption and EC key generation in Swift
Backend uses this java implementation for encrypting the data using public key(generated from iOS App in swift),
Cipher iesCipher = Cipher.getInstance("ECIESwithAES-CBC");
by...
Dhaval Panchal
Votes: 0
Answers: 2
How to verify signature authenticity that was signed using google KMS (Asymmetric sign, Elliptic Curve P-256 key SHA256 Digest) in C#
I have some string data which I signed with google key defined by Algorithm: Elliptic Curve P-256 key, SHA256 Digest.
I wrote a program that should verify that the data and the signature (that was ret...
Lior Schwimmer
Votes: 0
Answers: 1
Can I customize public key from elliptic-curve package node.js?
this.keyPair = ec.genKeyPair();
I use this line to get the keys, and the public key will be the address, but I want the user to make their own address for private blockchain reasons (address will use ...
riel
Votes: 0
Answers: 1
Python - extract an elliptic curve private key from pem file
How do I extract an elliptic curve private key from a pem file to use for signing data in python?
I have been using pyOpenSSL to load the private key, but don't understand the process of extracting th...
John
Votes: 0
Answers: 0