Privatekey is the tag for the private key that occurs in asymmetric cryptography algorithms such as RSA and Diffie-Hellman. In asymmetric cryptography a key is actually a pair consisting of a public key and private key. The private key must never be divulged while the public key can be made ...
0
votes
1answer
12 views
Best approch to decode the PKCS12 file and get the encrypted private key from it using JavaScript
Please suggest any idea to decode the PKCS12 file and get the encrypted private key from it using JavaScript. I know that it can be done very easily using Java Keytool command and Java Security ...
0
votes
2answers
22 views
Invalid AES key size after RSA decryption
I am trying to decrypt a message that has been encrypted using AES-128 Symmetric encryption and then RSA-1024 Asymmetric encryption on the generated symmetric key. I receive the encrypted AES key and ...
0
votes
1answer
20 views
How i can create a self-signed certificate using phpseclib
How i can create a self-signed certificate using phpseclib from a existing .csr file, only i can use a .csr file.
I've read the manual and the method use a private key, but in my assignment i only ...
0
votes
0answers
23 views
ssh key auth still asks for password (no passphrase set) [migrated]
Trying to set up SSH to my CentOS VPS with key auth and no pass phrase so that I can auto-connect from my Debian 7 local server. I've gone as far as copying and pasting from two different guides on ...
0
votes
1answer
20 views
RSA Encryption via C# privatekey xml access
I used this article RSA Encryption in C# and it's perfectly working fine ...
But I think there is a security problem .
if we want to use this method,we must put xml files in web root directory and ...
-1
votes
0answers
15 views
How to choose the appropriate public (i, m) and private (j, m) keys? [closed]
I studied some encryption and decryption and I have found some very interesting problem to solve on the internet. I hope I am writing to right site - there are so many in StackExchange otherwise I ...
0
votes
0answers
10 views
Openssl pkcs8 default format gives RSA PRIVATE KEY [migrated]
I'm running this command on my pc (Openssl version: 1.0.1) :
openssl pkcs8 -inform DER -in file.key -passin pass:12345678a -outform PEM -out key.pem
and i got this key.pem:
-----BEGIN PRIVATE ...
1
vote
0answers
27 views
Is it possible to sign a Passbook manifest using node.js and crypto?
I'm trying to figure out how to sign an iOS Passbook pass manifest.json using node.js and crypto. It seems like it should be possible but I can't seem to create a proper signature.
Here's is what ...
0
votes
0answers
16 views
Generating public-private key pairs where determining the public key is also hard to calculate if unknown
I'd like to know how one would go about generating a private-public key pair where the public key is as hard to deduce from the private key as visa versa?
As I understand it presently the exponent ...
0
votes
1answer
45 views
Java: Bad Padding Exception in RSA
I am running the following code I am getting a Bad Padding Exception - Data must start with zero. Any ideas?
Here is the code
public class test {
public static void main(String[] args) throws ...
-1
votes
1answer
30 views
AWS EC2: How to REGENERATE the “.pem” file from an Instance? [closed]
I have Linux instance on EC2 and i lost the ".pem" file. So now i can NOT access to my instance through SSH anymore from my terminal.
How do i regenerate the ".pem" file from AWS EC2 panel?
1
vote
0answers
34 views
Cross Platform Asymmetric Encryption and Decryption
I have created a self-signed certificate in c#, with a private key created with a RSACryptoServiceProvider, 1024 bytes.
I have encrypted a byte array with the public key.
I have then imported the ...
0
votes
1answer
12 views
Unable to sign text block with Private Key
I am trying to create a digital signature of a load of clipboard text. I am:
Creating a SHA-256 hash of the plain text.
Encrypting this hash with my PRIVATE key.
Attempting to decrypt this with my ...
0
votes
1answer
22 views
Private key security in windows certificate store
When I import a public/private pair into windows certificate store, Windows does not require any password of any kind to encrypt the keys.
From that I conclude that if it is a user's store, it uses ...
0
votes
2answers
40 views
Encryption Failing with error Invalid length for a Base-64 char array or string
I am trying to encrypt a PRIVATE KEY with a passphrase so I can save the file to disk. But the encryption method is throwing the exception: "Invalid length for a Base-64 char array or string".
The ...
0
votes
0answers
9 views
OpenPGP Web of Trust application to identity authentication
I'm collaborating in an opengov movement in my local community: http://www.partidodelared.org/
We are thinking about how to implement a distributed non-binary authentication and identity system, to ...
1
vote
0answers
30 views
MVC 4 - PK-Restriction insulted with derived classes
This is my setup:
Base class "Asset" with property "ID"
Derived classes "Bond", "Future".
I'm using table per type. Now, I when creating the 2nd Bond / Future, this exception is thrown on ...
0
votes
0answers
32 views
How to use putty private key file to make sftp connection
I'm able to connect to sftp site using username and password by using below code:
FtpWebRequest reqFTP;
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpURI + "/" + clientFolder + ...
0
votes
2answers
53 views
Mercurial: How to clone using SSH and .ppk file?
hg clone ssh://denis@medsecop.com//var/www/vhosts/medsecop.com/stage/symphony
returns
remote: Permission denied (publickey).
abort: no suitable response from remote hg!
I have the .ppk file but ...
3
votes
1answer
87 views
Securely store and share a secret with ServiceStack across different logins
Given is a ServiceStack REST Service that can sign documents with one of the public/private key algorithm. The prvate key is encrypted using a passphrase only the admin of this privat/public key pair ...
0
votes
0answers
34 views
keystore getEntry returns null second time
In my request doPost I have the following code.
File file = new File("C:\\temp\\HelloWorld.P12");
is = new FileInputStream(file);
String password = "helloworld";
...
0
votes
1answer
20 views
How to import a certificate with private key on Certificate Management Tool
By now the only way i'm able to import a certificate on Certificate Management Tool is by having a .pfx file. I'm using Makecert.exe utility to generate certificates.
First Step - I generate a ...
0
votes
1answer
28 views
Biometric locked file vault
I'm trying to create a file vault that is locked using biometrics. Using a library like libCrypto++ seems a nice plan. Its simple to store things in the vault as the public key can be kept in the ...
1
vote
2answers
62 views
X.509: Private / Public Key
We're trying to implement some functionality of a Web-Service from one of our partners. Now, the content which is beeing transmitted, should be encrypted with a public key, which we have to provide.
...
0
votes
1answer
34 views
Construct a Java PrivateKey object from an SSLeay formatted key
I am working on a Java (JSE 7) application that receives a private key in SSLeay format from an external server and needs to construct a java.security.PrivateKey-derived object. Since the key is ...
4
votes
2answers
50 views
What is a private key in Android?
I read this article about signing your Android applications. I used Eclipse to export my Android application, had to create a keystore (which succeeded) and a private key with an alias (which also ...
1
vote
1answer
63 views
Connect to server using smart card for client authentication
We developed software where a GUI client connects to an openssl Server using either login/password or a client certificate. We have to implement a new solution which where the the connection ...
-1
votes
3answers
67 views
Encrypt message with private key? [closed]
In RSA encryption and decryption, we use the public key to encrypt the plain text to cypher text and then read it with private text.
But in Signature, it is said to sign it with private key, and then ...
0
votes
1answer
81 views
How to extract private key from pfx file using openssl?
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 command:
...
0
votes
1answer
163 views
How to get private key from browser keystore?
I read certificates from keystore browser, there is some problem with getting private key, but public key get perfect. Below is code:
KeyStore keystore1 = KeyStore.getInstance("Windows-MY");
...
0
votes
1answer
37 views
How can I rsync/scp files/folders among EC2 servers?
I tried to execute scp/rsync command between two of my EC2 servers but I got the error as be low snapshot.
Normally when I ssh connect to my servers via PuTTY, I need to attach a private key. So what ...
1
vote
1answer
78 views
Unable to generate same key pair from same random seed
I am using java cryptography to generate public and private keys. I am using String.getBytes() to generate it. But While decrypting I am using the same String.getBytes() to get the keys. But I am not ...
0
votes
0answers
143 views
“OpenSSL::PKey::RSAError: padding check failed” exception, why?
I've been developing a SSL keys for my application, and I've got a private key and a public one. However, when I try to decrypt it, it raises "OpenSSL::PKey::RSAError: padding check failed". Why?
...
3
votes
1answer
46 views
What type of Reader to use when generating a Private Key in Go?
I need to generate a private key in Go. I am using the rsa package (http://golang.org/pkg/crypto/rsa/). In particular, it seems that I would like to use the GenerateKey method. One of the parameters ...
0
votes
2answers
76 views
Get cipher used to password encrypt private key
I have a private key used for RSA exchanges that is password protected. I know the password, so I can use the key, however, I do not know which cipher was used to do the password.
I have other keys ...
0
votes
2answers
73 views
PHP / Bash: Creating PPK out of OpenSSH Key with passphrase
I would like to create a php script that creates keys for ssh-authentication.
I've started with a
exec("ssh-keygen -b 1024 -t dsa -N *pwd* -f *path-to-file* -q");
to create the private and ...
0
votes
1answer
48 views
What is the best way to store the private key in browser [closed]
I am using RSA.I want to encrypt data using public key on server,decrypt data using private key on browser with javascript. What is the best way to store the private key in browser?
0
votes
2answers
65 views
How to change a .p12 file to .key file
I have a .p12 file, I can also transfer it to a .pem file, but how to transfer it as a .key file?
0
votes
1answer
69 views
Dumping public key from private using libopenssl
Let say I want to have a code doing something like this openssl command in my c++ application.
openssl rsa -in private.pem -pubout -outform der -out ./out.pub
How can I do that?
I was look for a ...
0
votes
1answer
35 views
How to write a batch for a pkcs ftp upload?
I'm trying to write a script, which automatically connects to a ftp server and is uploading two simple files.
I found many guides on the internet for uploading a file via a batch file to a ftp-server ...
1
vote
1answer
95 views
Storing certificates in pkcs11 keystore
I am generating an RSA keypair in pkcs11 keystore, it was storing into smartcard and i am generating pkcs10 request. when i download the equivalent certificate how can i store it into ...
2
votes
1answer
39 views
How to use psql with SSL key?
How to connect to a PostgreSQL server using psql with SSL key just like ssh -i $KEY?
2
votes
1answer
374 views
RSA - bouncycastle PEMReader returning PEMKeyPair instead of AsymmetricCipherKeyPair for reading private key
I have a function that successfully reads a openssl formatted private key:
static AsymmetricKeyParameter readPrivateKey(string privateKeyFileName)
{
AsymmetricCipherKeyPair keyPair;
using ...
0
votes
1answer
36 views
Client sent me distribution certificate and login username passwords to the development portal, but no private key
The distribution certificate is actually downloaded from Apple's development portal. Is there a way for me to generate the private key for the distribution certificate? Or the private key has to be ...
0
votes
0answers
33 views
“unable to sign data : OpenSSL error” in Google Calendar API using service account
I am trying to add calendar events using Service Account through Google Calendar API. The calendar is successfully updated through localhost. But when I deploy the application on the production ...
1
vote
1answer
242 views
Paramiko — using encrypted private key file on OS X
I'm trying to use Paramiko to connect to an SSH server from Python. This is what I tried so far:
>>> import paramiko
>>> import os
>>> privatekeyfile = ...
0
votes
1answer
30 views
Generating a Private Key From CA with OpenSSL
I'm trying to use OpenSSL to create a private key which matches (the public key of?) a certain CA (PEM file), but I don't know what command to use to achieve this.
If I just create a random private ...
1
vote
3answers
148 views
Embedding private key into application code in Android
In my application, I need to establish a SSL connection. Currently, I have a BKS type keystore file, but I don' t want to store it in my apk as a file. AFAIK private keys can be embedded within ...
0
votes
0answers
177 views
Android - Certificates - Public Key, Private Key
I have .p12 certificate an I need to import it into my Android application.
I have manage to import public an private keys but they are wrong. ?????
X509 certificate is ok until I put it into ...
0
votes
0answers
413 views
Convert DER formatted private key file to PEM form
I have a .prv file which is probably DER formatted private key file.
This file is used to certificate Cable Modem.
I want to convert this file to PEM formatted one.
I tried with openssl tool but none ...




