Tagged Questions

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 available to everyone.

learn more… | top users | synonyms

7
votes
1answer
2k views

Import .pem public and private keys to JKS keystore

I have public and private keys in separate .pem files that I would need to get into a JKS keystore somehow. Tried using the -import command in KeyTool for this, which gives an "not an X.509 ...
6
votes
6answers
564 views

Confused about encryption with public and private keys (which to use for encryption)

I am making a licensing system when clients ask my server for a license and I send them a license if they are permitted to have one. On my current system I encrypt the license using a single private ...
5
votes
3answers
113 views

How to implement OpenSSL functionality in Python?

I would like to encrypt a secret text by public-key and decrypt it by private-key in Python. I can achieve that with the openssl command: echo "secrettext/2011/09/14 22:57:23" | openssl rsautl ...
5
votes
1answer
308 views

iPhone: how/whether to include my existing private key in a new certificate?

Short version: Is it necessary or even possible for me to generate a new distribution certificate based on my existing private key, or is there no harm, both for new apps and updates to existing apps ...
5
votes
1answer
284 views

What exactly is a “key container”?

Is it something specific, with a definite structure, or just an arbitrary data file with some form of encryption to hold keys, and potentially other secret information? Can someone please explain the ...
5
votes
2answers
25k views

How to create a private key for iPhone Distribution Certificate?

In iPhone Developer Program Portal, there's a video to demonstrate how to create a development certificate and assign a private key Now I have finished the development process and starting to ...
4
votes
3answers
926 views

Securely Handling Private Keys from Windows Key Store - C#

I'm working on an application that encrypts configuration file settings for an ASP.Net web server. The encryption method I'm implementing is enveloping data using AES and RSA. I'm generating an AES ...
4
votes
1answer
2k views

RSA: Private key calculation with Extended Euclidean Algorithm

I'm a high school student writing a paper on RSA, and I'm doing an example with some very small prime numbers. I understand how the system works, but I can't for the life of me calculate the private ...
4
votes
2answers
2k views

How to read a password encrypted key with java?

I have private key stored in file in PKCS8 DER format and protected by password. What is the easiest way to read it? Here is the code I use to load unencrypted one: InputStream in = new ...
4
votes
3answers
5k views

Encrypting with RSA private key in Java

I'm trying to encrypt some content with an RSA private key. I'm following this example: http://www.junkheap.net/content/public_key_encryption_java but converting it to use private keys rather than ...
3
votes
2answers
361 views

Store and retrive private key from Mac keychain programatically

In a Mac application, I have a requirement to store the private key sent from the server for logged in user in a secure way and retrive it back whenever needed programmatically. I know that keychain ...
3
votes
3answers
2k views

Setting a custom path for git private SSH key on linux

I'm trying to setup a git client on linux. I uploaded my private key to the machine, and I understand that I should put it in ~/.ssh, but I don't have access to that folder. How can I tell git to ...
3
votes
3answers
1k views

PHP RSA encryption using private key and PKCS1

I need to encrypt a string using RSA, PKCS1, a private key and PHP. I could not find even a terminal command which can be used with exec(). Does anyone knows how to do it? Thanks!
3
votes
2answers
474 views

How can I use an existing private key to a new iOS development certificate?

For aesthetic reasons, I would like to use the same private key that I used to create my distribution certificate a while ago, to create a new development certificate (my old one expired). But the ...
3
votes
1answer
706 views

Load Java KeyStore for one alias?

Does anyone know if it is possible to load a KeyStore so that it only prompts for the password for the given alias? Example: In my key store i have two private keys: Alice's Encryption Certificate ...
3
votes
4answers
254 views

Is web.config more secure than a class?

I was reading a tutorial on ASP.NET and third party API's and it mentioned that the API KEY and SECRET KEY should be stored in the web.config file, for security on production servers, instead of in ...
3
votes
3answers
2k views

How to communicate AES initialization Vector to client for hybrid cryptosystem

I need to implemented security for client-server communication. I have implemented the following hybrid cryptosystem: http://en.wikipedia.org/wiki/Hybrid%5Fcryptosystem To encrypt a message addressed ...
3
votes
4answers
4k views

Encrypting a BouncyCastle RSA Key Pair and storing in a SQL2008 database

I have a function that generates a BouncyCastle RSA key pair. I need to encrypt the private key and then store the encrypted private and public keys into separate SQL2008 database fields. I am using ...
2
votes
1answer
128 views

The best way to export private key as byte array

I write application that has to get private key from the user and then send it to another application as base64, I want to allow the user to insert a X509Certificate2 with the private key. Now my ...
2
votes
3answers
173 views

Export private key from X509Certificate object

We use C# code we build X509Certificate2 with .p12 file, in the constructor we insert the path to certificate, certificate's password. We also marked it as Exportable as shown below: X509Certificate2 ...
2
votes
2answers
399 views

C# WCF client error “The private key is not present in the X.509 certificate”

I'm am trying to create a very simple WCF client application which will send SOAP messages to a 3rd party service. All the messages must be digitally signed. It's really a proof of concept before I ...
2
votes
1answer
58 views

What is Private Key Challenge?

When i reading about smartcards i came across this term called private key challenge. Private key challenge – to ensure the certificate is bound to the token to which it was issued and has not ...
2
votes
2answers
213 views

How can we copy an EVP_PKEY which includes RSA key?

I found the function EVP_PKEY_copy_parameters, which can copy EVP_PKEY. But some documentations about this function says it can only be used for DSA/ECC algorithms. The official documentation (from ...
2
votes
3answers
372 views

c# RSA extract public key from private key

Is there a way to extract public key from private key in c#? Becouse if i do ToXMLString() then i can set if i want public key information saved with the private key. So now im thinking that is there ...
2
votes
2answers
199 views

Get sha1 message digest from plaintext+private key in delphi

I want to create a Sha1 message digest, and it should use my private key as input along with the plain text. Everything I have found so far either dont use a private key or just take a lot of ...
2
votes
5answers
132 views

public key for encryption; private key for de-cryption?

I understand that private and public keys are mathematically related and data encrypted with one key can only be decrpyted with other. My question is that private key is always used to encrypt data ...
2
votes
0answers
128 views

md5 collision how is it possible?

i don't understand how one can create a rough Certificate just by making a MD5 collision. Even if you were able to find another string whose hash matches the original how would you sign it ? You do ...
2
votes
4answers
449 views

Is it possible to have encryption with multiple private keys (PHP)?

Or: How to store encrypted data for a bunch of users? I admit, it's a silly question, a private key is limited to only one person as the term already implies. But I have the following scenario: User ...
2
votes
1answer
197 views

Can I update existing apps in the app store if I have rejected my distribution certificate because I lost my private key?

I have done A LOT of looking around on the internet and just cannot find the answer to this question. I lost my private key, and so I have rejected and re-assigned new certificate/key combo, but am ...
2
votes
1answer
1k views

Fighting with certificates: Access was not successfully obtained for the private key

I work in company with many servers and Pcs for developers. Servers are win2003, PC developers Windows XP. In a server Win2003 named preiis01, in preproduction environment, other people in company ...
2
votes
1answer
224 views

Using .snk's private key to sign arbitrary data

I'm developing a .NET package manager and one thing that got me thinking is security. Given that anybody can potentially upload an assembly to the repository, how do I verify that said assembly ...
2
votes
1answer
433 views

What's the use of the Public and Private key for reCAPTCHA?

reCAPTCHA requires a public and a private key before it can be implemented into a website. It also needs the reCAPTCHA keys depending on the website. What's the reason behind this? Does the Public and ...
2
votes
1answer
248 views

Storage of private and public key in MySQL-DB

Probably somebody asked that already, but I couldn't find any usefull information and I've never done it before. So here is the problem. If I'll get a set of key pairs (DSA public and private keys) ...
2
votes
3answers
582 views

What algorithm does PGP use to encrypt the private key using the passphrase?

The PGPKeyRingGenerator constructor takes in a passphrase to encrypt the private key. What is the algorithm that it uses to do this? It has a field called encAlgorithm, but I couldn't find any ...
2
votes
1answer
729 views

Generating an RSA Key Pair with Erlang?

Erlang has a crypto function which generates public private keys (documentation copied below). However the documentation seems vague and I can't find any example code that describes how to generate ...
2
votes
4answers
696 views

Protect private key in Qt application

I have a Qt application written in C++ that uses a SSL-connection (QSslSocket) with another application for extra security. However, the application has a private key embedded in it. With ...
1
vote
1answer
37 views

Cheap SSL vs Expensive SSL [closed]

I was wondering what is the different between SSL certificate from verisign, http://www.verisign.com/ssl/buy-ssl-certificates/compare-ssl-certificates/index.html which is expensive , and a ...
1
vote
2answers
42 views

How to operate with X509 certificates in .NET code

I have some code that needs to work with X509 Certificate information. I have downloaded a sample that does this: const string CertWithoutPrivateKey = "MII...."; const string CertWithPrivateKey = ...
1
vote
1answer
40 views

How to get P and Q from KeyPairGenerator for RSA in Java?

I use KeyPairGenerator class to generate private and public key for RSA algorithm. Next step is to create DigitalSignature for some files. I'm going to use Signature class with public key generated in ...
1
vote
1answer
424 views

SSH to EC2 but get Permission denied (publickey)

I generated the key-pair by EC2-Console, and then store it in ~/.ssh/iForests_ABetADay.pem. After that, chmod 400 iForests_ABetADay.pem, and ssh -i iForests_ABetADay.pem ubuntu@46.51.244.48 -v. I did ...
1
vote
1answer
78 views

sftp login with private key & public key no username and domain given [closed]

My client send me today a public and a private rsa key to login to the sftp server. Is it possible to derive the domain and username from these files, or did he simply forget to mention them? He send ...
1
vote
2answers
137 views

Can I get public/private key pair from a key container in smartcard?

Can I get the public/private key pair from a key container inside a smartcard using PKCS #11 or CryptoAPI?
1
vote
1answer
198 views

Private Key storage in Android

I have to store the private key of my app in a secure location in the android device, i read about certStore, but it doesnt allow to store a file in it. Is there any location where I can store it ...
1
vote
2answers
273 views

how to get private key from PEM file?

i have a .PEM file that includes public key and a private key for SSL data transfer like this: -----BEGIN RSA PRIVATE KEY----- private key data -----END RSA PRIVATE KEY----- -----BEGIN ...
1
vote
1answer
118 views

Creating a temporary client certificate (including a private key)

As part of an application I am writing, I wish for my program to temporarily install a certificate on the local machine and for WinHTTP to use it as the client certificate when connecting to a web ...
1
vote
0answers
24 views

securing amazon access keys in code

Amazon web service requires us to provide both id and an secret key for making requests with our web applications. While creating several key pairs with different authorization to different services ...
1
vote
1answer
113 views

Is there any method to directly load a certificate & private key to SSLServerSocket (Java) programmatically?

I am from a 'C' background. I am trying to analyze how to write a Java SSL Server. So, far the examples I found talk about loading certificate and private to a Key Store and the programmatically ...
1
vote
1answer
940 views

ios private key and certificate not pairing

I cannot seem to ge my certificate and private key to pair up in keychain access. They are both in keychain separately. Steps I have taken: Clear everything from keychain Import .p12 private key file ...
1
vote
1answer
132 views

Private key encryption method wanted

I am programming some server-client software and wanted some encryption. Both the server and client share a private key which is fixed length. Haven't decided what length I am going to have the key, ...
1
vote
1answer
576 views

Cryptography : Generation of RSA Private Key Using Modulus & Exponent

I am new to cryptographic world. I need to generate corresponding RSA privaye key from the data provided below. Modulus ...

1 2 3