private-key Questions

16

Solved

I am trying to sign my Android app so I can release it in Market. When I generate the keystore, I get an access denied error. How do I fix this? This is what I've been trying to do: Right clic...
Uund asked 6/7, 2011 at 20:18

2

Solved

I am trying to connect to an SFTP through Paramiko with a passphrase protected SSH key. I have loaded the key into Pageant (which I understand is supported by Paramiko) but I can't get it to decryp...
Overboard asked 20/8, 2014 at 8:3

3

Solved

From OpenSSL 1.0 change log: Make PKCS#8 the default write format for private keys, replacing the traditional format. This form is standardised, more secure and doesn't include an implicit MD...
Demur asked 2/6, 2010 at 12:44

2

Solved

I have a PKCS#1-formatted private key (generated by opendkim-genkey) like this -----BEGIN RSA PRIVATE KEY----- Base64 encoded data -----END RSA PRIVATE KEY----- Now I have to use it in Java to...
Cyprio asked 9/5, 2018 at 10:0

5

Solved

I get the following error on secondary replicas when trying to restore an encrypted backup even though the replica has the master key (dmk), service master key, certificates and private keys restor...
Lucic asked 22/9, 2017 at 21:52

2

I have the following piece of code: PEMParser pemParser; File telexuskeys = new File(locationKey); if(telexuskeys.exists()) pemParser = new PEMParser(new FileReader(telexuskeys)); else{ usag...
Sonora asked 15/7, 2013 at 15:29

3

Solved

I want to encrypt data using public/private key technique. I mean, encrypt with the public key of receiver and the receiver can decrypt with their own private key. How can I do that? Do you have ...

4

Solved

I'm trying to access a server using Filezilla and was told I needed to use authentication with public/private keys. I created the keys using the Terminal, but cannot find them on my computer. Thi...
Gracie asked 22/8, 2016 at 18:23

2

Solved

I'm trying to establish an SSH connection using Kotlin + JSch, but it fails with com.jcraft.jsch.jSchException: Auth fail Steps taken: Generate SSH key pair using ssh-keygen -t rsa -m PEM (OpenS...
Weevil asked 24/6, 2022 at 12:5

5

OK, I've stumbled on this topic many times, but this is the first time that none of the regular solutions worked. I have a CentOS 6.4 server running GitLab. It's been working great with 20+ users ...
Selfstyled asked 28/10, 2013 at 12:2

6

var rawData = Convert.FromBase64String(_signingKey); var cng = CngKey.Import(rawData, CngKeyBlobFormat.Pkcs8PrivateBlob); I use this code to extract key, from embedded base64 string. It works fin...
Kaleidoscopic asked 15/12, 2016 at 13:23

2

Solved

What are "code signing identities" in Xcode? Are they the certificates? Are they the private keys? Are they the app ids? Are they the provisioning profiles? If I go to the target build se...

3

Solved

There are lots of SO posts on this topic but most of them are for Windows and use the GUI. All others posts seem to use the CLI. Is there a GUI version of puttygen on MacOS/Linux and if so ...
Colincolinson asked 17/5, 2016 at 21:50

3

I have a .pem file (base64-encoded cryptography information). What OpenSSL command-line should I use to detect whether it contains a public key or a private key? As explained in this StackOverflow...
Send asked 17/2, 2015 at 19:12

2

I have a .p12 file, I can also transfer it to a .pem file, but how to transfer it as a .key file?
Mull asked 18/4, 2013 at 6:20

1

I'm looking for a way using a Bash script to detect whether a Private Key file is password protected or not. I would believe this is possible using OpenSSL using the following command: openssl rsa ...
Saltern asked 31/1, 2022 at 20:55

2

Solved

I am trying to read a PKCS#8 private key which looks like following: key.k8 --> (Sample key. Passphrase - 123456): -----BEGIN ENCRYPTED PRIVATE KEY----- MIIFLTBXBgkqhkiG9w0BBQ0wSjApBgkqhkiG9w0BB...
Meperidine asked 20/1, 2022 at 12:30

6

I'm using sshtunnel to connect to connect to a remote server and on to a database from there. Everything is working fine, except that sshtunnel doesn't seem to recognize my ssh_private_key_password...
Kravits asked 21/10, 2016 at 3:17

2

i am trying to decrypt a pkcs8 encrypted private key using bouncy castle library. I parsed the file containing the private key using PEMParser provided by bouncy castle. I got PKCS8EncryptedPrivate...
Dearden asked 22/4, 2015 at 6:56

2

I was looking for this private key to add ssl certificate in Softlayer's "Add Certificate" wizard and to use it further with Local Load Balancer. I googled and tried following openssl comman...
Meltage asked 6/5, 2013 at 11:31

6

Solved

While trying to sign some installer created by the company I am working for I encountered an error, which I have not been able to solve. I am using the same certificate which has been used on anoth...
Unclassified asked 24/2, 2015 at 8:19

3

Solved

I'm trying to find a way to read a privateKey created using OpenSSL PKCS#8 RSA in C# without use external library. Does Someone know how i can do this?
Sensitometer asked 12/11, 2009 at 13:49

4

I can't seem to get TeamCity to read my Git (Gitolite) repository... I get an exception: List remote refs failed: com.jcraft.jsch.JSchException: Auth fail What I've tried: (I use PuTTY to export...
Savino asked 8/1, 2015 at 13:1

3

have the below RSA Private key with me and I have to generate a JWT token using RS256 algorithm. Here is my sample Private Key: -----BEGIN RSA PRIVATE KEY----- / MIIEoAIBAAKCAQEAnFWdIwBbLRw4xfFD...
Mardis asked 16/3, 2018 at 22:10

15

I have a .key file which is PEM formatted private key file. I didn't make this file but I got this from somewhere. I wanted to see its MD5 hash with openssl tool like below command. openssl...
Contagious asked 27/8, 2013 at 7:58

© 2022 - 2025 — McMap. All rights reserved.