Tagged Questions
1
vote
1answer
57 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 ...
3
votes
1answer
41 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
53 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
1answer
54 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 ...
1
vote
1answer
75 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
234 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 ...
-1
votes
1answer
292 views
ssh cannot use the IdentityFile config in file ~/.ssh/config
client:Mac 10.8,server:Ubuntu 10.04 LTS 64bit
I use 'ssh-keygen -t rsa' generate public/private keys.
First, I input: ssh -i /Users/phenix/.ssh/poponet_rsa root@popo.net, I can login to the server ...
0
votes
0answers
73 views
Encrypting a private key with a passphrase
I am working on a system where I need to store an RSA private key on a server.
I intend to use OpenSSL to generate the private key and to apply a passphrase to it so that the private key is encrypted ...
1
vote
2answers
1k views
Decryption with openssl not working
Here is my php script
<?php
$pubfile = fopen("public_key.pem", "r");
$public = fread($pubfile, 8192);
fclose($pubfile);
openssl_get_publickey($public);
$prifile = fopen("private_key.pem", "r");
...
0
votes
0answers
42 views
Generating / Extracting RSA key in Microsoft SBS 2008
I have really been struggling with this scenario. I have a UCC certificate that we had purchased from GoDaddy. I would like to use that certificate with our Exchange server 2007. My understanding is ...
1
vote
1answer
287 views
Use PEM encoded RSA private key in .NET
I have a private key which looks like this:
-----BEGIN RSA PRIVATE KEY-----
Some private key data
-----END RSA PRIVA
I need to use this key in my C# project, but I couldn't find any example ...
-1
votes
1answer
88 views
Modular multiplicative inverse program doesn't work [duplicate]
Possible Duplicate:
Translate program from Python to PHP
This is a follow up to this question, where I asked for help with translating a program from Python to PHP. I was refused, which is ...
0
votes
1answer
1k views
Javascript RSA decryption using private key
Hello I have this script that I set in Javascript :
<!DOCTYPE html>
<html lang="en">
<head>
<script src="jquery-1.7.2.min.js" ...
1
vote
1answer
328 views
Bouncy Castle J2ME load existing private key
Im so stuck at this project. Can somebody please help me out here?
I have a PEM or DER private key. An existing key. How can I load this key with
PrivateKeyFactory.createKey or into an ...
2
votes
1answer
253 views
C RSA key generator
I create a program on a microntroller (which does not run any OS), and I can't find any library in C which can give me a RSA (PKCS#1) key generator (public and private).
I suppose that OpenSSH isn't ...
0
votes
1answer
119 views
OpenSSL hanging when trying to encrypt
I am hoping there is someone here who knows something about OpenSSL. I am completely new to OpenSSL and I'm trying to implement it to encrypt dynamically generated PayPal buttons for a web store. I ...
1
vote
1answer
128 views
Javascript read private key information
Hello I have the following private key I think it's a X509 structure :
...
3
votes
0answers
388 views
RSA Key pair Exception on importing the private key
I am new to RSA and Cryptography and i need to encrypt and decrypt data using RSA, I have a java program which generates a key pair and save them in a .key files with XML format (It is absolutely OK ...
1
vote
1answer
350 views
RSA 2048 Encryption Decryption - Exception
I am trying to encrypt and decrypt the data with RSA 2048.
We have one public key and private key and will be using same throughout.
but the problem is, when I decrypt, I am getting ...
1
vote
1answer
316 views
RSA Decryption - BadPaddingException: Data must start with zero
I am writing RSA ENcyrption/Decryption.
Here's the code.
But when i decrypt using Private Key, I am getting exception
public class RSACrypto {
private static SecureRandom sr = new ...
2
votes
1answer
79 views
Does RSA encrpytion work for small numbers?
Suppose:
p = 3
q = 11
n = 33
phi = 20
e = 7
d = 3
If I want to encrypt the number 123, I would do (123^7) % 33, which equals18.
Now if I want to decrypt 18, I do (18^3) % 33, which gives me 24.
As ...
0
votes
2answers
106 views
Quicker way to calculate RSA private key in PHP
Hi I am required to do my own implementation of the RSA algorithm in php. The only thing I have a problem with is the part that calculates the private key. The way my function works is by getting a ...
0
votes
0answers
143 views
RSACryptoServiceProvider unique privatekey based on a string
how can i generate an unique private key based on a string ?
i tried the following :
CspParameters cspParams = new CspParameters(1);
cspParams.ProviderName = "Microsoft Strong Cryptographic ...
1
vote
2answers
412 views
Decryping a string with private key (RSA)
I have a public key and a private key and also a string which I want to decrypt.
The public key is in this format:
-----BEGIN PUBLIC KEY-----
(key here)
-----END PUBLIC KEY-----
The private key is ...
0
votes
2answers
1k views
Generate Private and Public key OpenSSL
i have following commands for OpenSSL to generate Private and Public key:
openssl genrsa –aes-128-cbc –out priv.pem –passout pass:[privateKeyPass] 2048
and
openssl req –x509 –new –key priv.pem ...
0
votes
0answers
211 views
How to extract Private key Exponent in RSA
When i use - (void)generateKeyPairRSA i get these values for public and private key Public key SecKeyRef: 0x7131000
Private key SecKeyRef: 0x790b000.
How to extract n,e,d values from private and ...
1
vote
0answers
94 views
What are the standards for saving a private key?
What the title says.
I am generating a private key in java using the Java.security.*
When use the RSA part I generate a public and a private key. The private key I assume from what I have read is ...
0
votes
0answers
143 views
how to read a passphrase protected rsa private key using bouncycastle for j2me?
I am trying to implement client certificate authentication for TLS handshake.
I am using bouncycastle j2me library for this.
I have a private key which is passphrase protected. I am trying to create ...
0
votes
1answer
169 views
Converting the Cipher Buffer to nsdata and back to cipherBuffer
My problem is CipherBuffer which is uint8_t i am not able to convert that to NSData and get back the same value.the thing is i need to send the encrypted data to server.
Even i get NSData from ...
4
votes
4answers
2k views
Encrypt RSA Private Key with AES 256 in Java
I am writing a secure file sharing application in Java. The general architecture looks like this:
User wishes to encrypt a file for secure sharing between multiple users.
The application generates ...
0
votes
2answers
286 views
IPhone Decryption with private key -Data Encrypted in Java
Can anyone help with the code how to decrypt with private key ,As in server side they are using OAEP encryption method .I tried decrypting using private key but the decrypted text is Null,I am getting ...
0
votes
3answers
326 views
private key distribution techniques?
I made a chat application with java rmi client server. For the security of my messages using the RSA algorithm, but my difficulty in distributing the private key into the opponent's chat. Perhaps from ...
0
votes
1answer
312 views
M2Crypto.rsa privat key components
Can anybody tell me, how to get p,q,dp,dq and u component of rsa private key?
loading of the key:
string = open(keyfile,"rb").read();
bio = BIO.MemoryBuffer(string);
rsa = RSA.load_key_bio(bio);
...
4
votes
2answers
1k views
iOS: Adding a Private Key to the devices KeyChain
I have a project where I receive an encrypted RSA private key for a user from a server. Using information provided by the user, I am able to decrypt the data back into an expected format. However, I ...
1
vote
3answers
991 views
RSA in C# public key is same as private key?
I searched a lot online but stuck with doubts in RSA public key and private key cryptography.
When I checked MSDN site, I tried this
RSACryptoServiceProvider rsaEncryptDecrypt = new ...
0
votes
1answer
513 views
How to tell if cert has private key
I've got a keystore that is full of certificates. Another person has told me the certificates have a private key but when i check in my code i never see any. All of these keys were used in vs6 and ...
2
votes
1answer
340 views
How to sign and encrypt hash with c# given only a keystore
I'm using a keystore that was created using vc 6.0 and the cryptoAPI. The keystore contains all the exchange/signature keys. So i can use the public keys just fine to encrypt data using RSA but when ...
1
vote
1answer
303 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 ...
3
votes
1answer
3k views
Read private key in DER format java
I have the following code to read a private key in PKCS#8 format
public void encryptHash(String hashToEncrypt, String pathOfKey, String Algorithm) {
FileInputStream fis = null;
byte[] ...
0
votes
2answers
2k views
Secure FTP using private key authentication in java
import com.jcraft.jsch.*;
import com.jcraft.jsch.JSchException;
import oracle.jdbc.driver.OracleDriver;
import java.io.*;
import java.util.*;
import java.sql.*;
import java.net.*;
public class ...
1
vote
1answer
361 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 ...
0
votes
1answer
98 views
What difference does key length make when signing a file?
I've never taken any classes on encryption or security and I'm trying to teach myself some basics, so forgive me if this is a silly question (don't worry, I'm not working on anything sensitive)
So, ...
0
votes
0answers
176 views
How can I instantiate PrivateKey objects?
I'm want to use the function "initSign" of the object "Signature".
This function receives the private key as a PrivateKey object.
I have pem file with the private key. How can I create a new ...
2
votes
1answer
2k views
Cryptography : Generation of RSA Private Key Using Modulus & Exponent
I am new to cryptographic world. I need to generate a corresponding RSA private key from the data provided below.
Modulus ...
2
votes
3answers
843 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
1answer
489 views
Create a RSAParamaters Object from public+private key
I need to create a RSAParameters object in .Net using a private and public key (.key and .cer file). Is it possible to do this in .Net without the use of third party software? If so, where should I be ...
1
vote
1answer
868 views
Key Size in RSA C# is not changing !
I am generating key pair and store them in xml file using
ToXmlString(true);
I need to set the key size to 2048
according to the MSDN the only place to do this is from the constructor of the ...
4
votes
4answers
4k 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!
0
votes
1answer
745 views
RSA Decryption using PrivateKey in pem format
I'm a newbie to this Cryptographic area. Here is my problem:
I need to decrypt a Cipher text(encrpyted by RSA-Public key) using PrivateKey which is in "privatekey.pem" format. I does not know ...
7
votes
1answer
6k 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 ...

