search for: pubout

Displaying 12 results from an estimated 12 matches for "pubout".

Did you mean: aubout
2010 Mar 17
1
Check public/private RSA keypairs
...o vnc to them for ages. To do this easier, i wanted to have a possibility to check somehow if the public key stored on the server mathes the provate key on the client, or if it needs to be regenerated. Now i figured i can output the public key to a private one by using openssl rsa -in rsa_key.priv -pubout this one will print out a public key in the same format as the public key stored in the hosts file, i tested it with some clients, and every private key will generate a pubkey different to the one in the hostfile, but each of these clients do work in my vpn, so the public/private keypairs must matc...
2019 Apr 11
1
decrypt.rb
...m -list_curves > > If you choose the curve prime256v1, generate and EC key with the command: > > openssl ecparam -name prime256v1 -genkey | openssl pkey -out > ecprivkey.pem > > Then generate a public key out of your private EC key > > openssl pkey -in ecprivkey.pem -pubout -out ecpubkey.pem > " > > -Dave I'm going on a limb and guess that there is something strange happening with ruby and openssl versions here. The main point of the script is to show how the data can be decrypted, and can be used for small-scale data recovery as well. Aki
2015 Aug 18
1
multiple nodes/servers
...eployment out weigh the security risks for me. On Aug 18, 2015, at 6:31 AM, Lars Kruse <lists at sumpfralle.de> wrote: > Hi, > >> Is it possible to generate one key pair? > > Maybe this is all you want to know? > openssl genrsa -out private.key 4096 > openssl rsa -pubout -in private.key -out public.key > > I assume that you analyzed the risks and benefits of a single shared key > according to your specific setup. > > Lars > _______________________________________________ > tinc mailing list > tinc at tinc-vpn.org > http://www.tinc-vpn.o...
2015 Aug 17
3
multiple nodes/servers
Greetings, I hope this message finds you well? First off, thank you for a great product. Is it possible to generate one key pair? This way I only have to copy one set of files over to the nodes. For instance I have roughly 50 machines that I need in the mesh network. I want to be able to create 1 master key pair and distribute that master key pair to all the nodes. This way the nodes can all
2019 Apr 11
2
decrypt.rb
> On 11 April 2019 00:49 David Salisbury via dovecot <dovecot at dovecot.org> wrote: > > > >>> > >> Yes. I gave it a try here, and it seems to work. Does it give any extra > >> information if you include -i flag? > >> > >> Aki > >> > > > > Yes, I had tried that, and it doesn't give much extra information, at
2012 Sep 09
2
Patch for ssh-keygen to allow conversion of public key to openssh format
Hi, I needed to convert a public RSA key to autorized_keys format and found ssh-keygen lacking this feature. I made the option -Q publicfile to allow an conversion like ssh-keygen -Q pubrsa.pem -y The patch is produced using unified diff and made on latest release. If you like it and can make a patch for the man-page also! Regards, /Lars -------------- next part -------------- diff -u
2019 Apr 11
0
decrypt.rb
...this command: > openssl ecparam -list_curves If you choose the curve prime256v1, generate and EC key with the command: > openssl ecparam -name prime256v1 -genkey | openssl pkey -out ecprivkey.pem Then generate a public key out of your private EC key > openssl pkey -in ecprivkey.pem -pubout -out ecpubkey.pem " -Dave
2015 Aug 18
0
multiple nodes/servers
Hi, > Is it possible to generate one key pair? Maybe this is all you want to know? openssl genrsa -out private.key 4096 openssl rsa -pubout -in private.key -out public.key I assume that you analyzed the risks and benefits of a single shared key according to your specific setup. Lars
2009 Jun 18
2
Convert pem key to ssh-rsa format
Hi I have a certificate in der format, from it with this command i generate a public key: openssl x509 -inform der -in ejbcacert.cer -noout -pubkey > pub1key.pub result is this: -----BEGIN PUBLIC KEY----- MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7vbqajDw4o6gJy8UtmIbkcpnk O3Kwc4qsEnSZp/TR+fQi62F79RHWmwKOtFmwteURgLbj7D/WGuNLGOfa/2vse3G2
2020 Jul 18
10
[Bug 3195] New: ssh-keygen unable to convert ED25519 public keys
...5 Component: ssh-keygen Assignee: unassigned-bugs at mindrot.org Reporter: marcoshalano at gmail.com I generate a ED25519 key using OpenSSL: openssl genpkey -algorithm ED25519 -out key_ed25519.pem After that I extracted the public key: openssl pkey -in key_ed25519.pem -pubout -out public_ed25519.pem And then I try to get the SSH public key to put on authorized_keys: ssh-keygen -i -m PKCS8 -f public_ed25519.pem The error was: do_convert_from_pkcs8: unsupported pubkey type 1087 So I think ssh-keygen can't convert a ED25519 public key. The expected result was something...
2019 Apr 09
3
decrypt.rb
>> I've tried specifying an output file as well, per the script's command line options, >> but the output file is 0 bytes.? Does anyone have any suggestions?? I *think* I'm >> using it the way it's intended to be used, but maybe I'm not?! >> -Dave > > Hi! > Maybe the key you tried was not used to encrypt the file? > Aki Aki,
2015 Jan 14
4
Obtain public key
Is there any way to obtain the public key from the private key? I know it's in host file however for the purpose of this message I need to be able to generate it on the command line. I tried openssl ec < ed25519_key.priv I get an error read EC key unable to load Key 140092556813984:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c:703:Expecting: ANY PRIVATE KEY