The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
18 views

ECDSA: How to get y coordinate from uncompressing x using openssl

What I am trying to do with ECDSA is take an x "compressed" coordinate and a y "bit" from values taken from external ECDSA hardware (it's really a public key) and then trying to recover the y ...
0
votes
2answers
57 views

Combining ECDSA keys

How can I combine two ECDSA private/public keypairs into one? I know it's done with modular addition in openssl, I just don't understand how that works. Can anyone explain that to me?
0
votes
0answers
33 views

Generate compressed ECDSA key with openssl

I'm trying to generate a compressed ECDSA public key with OPENSSL in C++. I can't find any docs or guides that explain how to do this in a way that I can follow. Can someone explain this or link me ...
0
votes
0answers
103 views

InvalidCastException on c# bouncy castle verify signature

I try to verify an ecdsa (256) signature, the only data I have to do it is the public key in the given format below, the original data and the signature: string pubKey_ecdsa = ...
0
votes
1answer
39 views

Openssl Generate Public Asymmetric Key

I am trying to output the public EC key parameters Qx and Qy from OpenSSL CLI. Is this possible?
0
votes
0answers
53 views

how to be our own certificate authority with ecdsa and openssl

I am trying to sign a certificate using a CA(self signed certificate) with ecdsa programatically. I managed to find this, and work with the command line. this is not perfect but might solve me some ...
0
votes
2answers
216 views

C implementation of ECDSA signature and verification with openssl

I am trying to create C program were I can choose from a menu which options I want from Signing a message and Verify a message. I have the code that signs the message and verifies at the same time. ...
1
vote
2answers
104 views

What are the parts ECDSA entry in the known_hosts file

I'm trying to extract an ecdsa public key from my known_hosts file that ssh uses to verify a host. I have one below as an example. This is the entry for "127.0.0.1 ecdsa-sha2-nistp256" in my ...
0
votes
0answers
49 views

Generate ECDSA keypair on the client side using IE

I am using CertEnroll.dll APIs to generate RSA keypair on the client side using Javascript. Now I am trying to generate ECDSA keypair on the client side.My research suggests that CertEnroll does not ...
3
votes
1answer
134 views

Why are these Botan public keys so similar?

I am using Botan to create public/private ECDSA keypairs. The public keys that are generated (even on different machines using this code) are very similar... too similar to consider safe I would ...
0
votes
1answer
148 views

Javascript ECDSA get private and public keys?

All I need are to get a private and public keypair for ECDSA. Stanford Javascript Crypto Library does it in a non-standard way ( ...
1
vote
1answer
315 views

SSH fingerprint verification for Amazon AWS EC2 server with ECDSA?

When I create a new Amazon EC2 server, I connect to it using ssh as usual. I see the typical warning: $ ssh myserver The authenticity of host 'ec2-12-34-567-890.compute-1.amazonaws.com ...