Tagged Questions
1
vote
0answers
62 views
RSA Algorithm (private key calculation) in bash
Looking for help on how to calculate the RSA secret key in a bash script 'd' when p, q & e are given.
Although I know this query has come up before, all I seem to find is theoretical advice on ...
1
vote
3answers
35 views
Alternative to RSA encryption in java
RSA encryption system with key size 1024 has a size limitation of 117bytes which can be used for encryption. This is for encrypting objects. Can any one suggest an alternative solution??
0
votes
1answer
169 views
Generating mega's RSA key pair in python [closed]
Recently I got stuck when trying to generate an RSA keypair for mega using Python.
So my question is :
How can i convert the RSA attributes from the Array format (used in JavaScript) into "long ...
4
votes
1answer
36 views
RSA Algorythm key generation
I'm currently struggling with RSA encryption algorythm.
My problem is located at the public/private key generation ,here are my steps:
1. -Generate 2 prime numbers p, q with p > q and nbBits(p) ...
0
votes
1answer
59 views
Signature RSA for data with length as key length
I have to create a signature from given data, but the problem is that data has length as key length. All implementation of RSA Signers in JAVA allow to put data of max. key length minus one length. ...
0
votes
0answers
69 views
Compare SecKeyRef object with another one in objective-c
I am currently writing a unit test for RSA key generation. Therefore I create an RSA key using the sample from Apple's CryptoExercise and store it into the keychain. Then I query the keychain and ...
1
vote
1answer
147 views
Securely generate RSA keys for a user
I have a user system that manages the users attributes, hashed salted password, an RSA Public Key and an RSA Private Key encrypted (by actual salt + password).
The RSA keys are generated during the ...
0
votes
1answer
53 views
OpenSSL Error while generating private key [closed]
I'm using a command genrsa -des3 -out key.key 4096, which someone recommeded me in my prev questions.
But I am getting error. I don't know why
2284:error:0906906F:PEM ...
1
vote
1answer
1k views
convert rsa private key from .DER format to .PEM format programatically using opensl
How to convert rsa private key from .DER format to .PEM format programatically using openssl api. Manually I am able to convert using openssl exe. Kindly suggest programtically how to do this.
2
votes
0answers
120 views
How to recover RSA from file?
I want to recover a public key from a file. Here is the Java code that works:
PublicKey readPubKeyFromFile(AssetFileDescriptor cle) throws IOException {
// read RSA public key
byte[] ...
0
votes
0answers
176 views
RSA C# with importing key
I'm trying to import RSAParameters, with my private and open key to sign hash, but i always get error.
CryptographicException when use method rsa.ImportParameters
My code:
static void Main(string[] ...
1
vote
1answer
595 views
Finding private key in RSA
I been trying to figure out how to find the private key in the RSA equation with no luck.
Given
p = 31
q = 23
e = 223
phil = (p-1)(q-1)
= 660
The equation (de mod phil = 1) results in;
e ...
1
vote
2answers
2k views
How to import SSH private key? [closed]
I'm pretty new to SSH authentication. A friend has allowed me access to his server and has sent me a private key in the form of:
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: blah ...
0
votes
1answer
210 views
Android jvm doesn't support keyFactory generatePublic() ?
Everyone, I recently implemented a RSA encrypt on both PC and Android. Some work well on PC (jdk1.6), but when I try on Android (Android 2.1 with jdk1.5), an error occurs strangely.
The code is like:
...
1
vote
1answer
95 views
RSA public/private keys in YAML
I need to store an RSA key pair in a YAML file, but a still limited understanding of yaml syntax and a lack of examples has me searching for an answer.
I'll just start working with what I've got, but ...
4
votes
1answer
888 views
GitHub Permission Denied (Public Key)
I'm getting the following printout with the -vT command (as per github's troubleshooting)
OpenSSH_5.6p1, OpenSSL 0.9.8r 8 Feb 2011
debug1: Reading configuration data /Users/someuser/.ssh/config
...
1
vote
1answer
264 views
Linux Server RSA key prompts every time in NetBeans
I cloned a disk image to another server to use the same setup with gentoo and nginx. Now every time I connect to the new server from my development api (NetBeans) via sftp, it adds the rsa key to the ...
1
vote
2answers
620 views
C# RSA decryption
I have writed this code for decrypt a byte array with the RSA algorithm:
the RSA Key class:
public class RsaKeys
{
#region Properties
/// <summary>
/// The ...
1
vote
1answer
907 views
C# Encrypt string with public RSA-1280 hex key
I've been trying to encrypt a password with a public RSA key that is sent to me by the server.
var csp = new CspParameters(1, "Microsoft Strong Cryptographic Provider");
RSACryptoServiceProvider RSA ...
1
vote
1answer
346 views
OpenSSL (cpp) and .net RSA key exchange
I have a problem concerning OpenSSL and dotnet encryption. I would like to transform a RSA public and private key generated by OpenSSL into a dotnet one. This key is then used for further actions. For ...
1
vote
0answers
52 views
Backups of RSA public and private keys
I was wondering which is the best way of making a backup of RSA key pairs. I have them in the same server I use to make backups in order to encrypt and by now this is a SPOF. I can't find any good ...
2
votes
1answer
396 views
How Create RSA Encryption key pairs using python that is comaptible with C# or vice versa?
Actually, i have started work on creating a web service in Python and C#(.NET 3.5 framework) as client. All requests are on POST so i decided to send my data in encrypted form using public key on C# ...
7
votes
3answers
4k views
How to generate RSA private key using openssl in C? NOT using Terminal
I want to know how to generate RSA private key using openssl liberary in my c source file?
I know how to generate it using terminal command.
Actually my server.c file will generate a private key and ...
11
votes
3answers
3k views
Private key length bytes
So im generating 2048 RSA keypair. But when i look at the private key the lenght is only 1232 bytes. Does this have anything to do with the 2048 or is the 2048 just the modulus size?
0
votes
1answer
491 views
How to test RSA private key
I m on a widows machine and need to test easily if my private key is ok. I need to test it becouse im wrapping it in HSM to export it and then unwrapping it in my test application in C#. Now i just ...
3
votes
2answers
1k views
Exporting RSA key object to XML in Java
I am successfully running RSA encryption/decryption in Java. This is how I generated the key.
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(path));
...
0
votes
2answers
837 views
.NET RSA Encryption: Minimum keysize?
I can load a 128bit RSA key in .NET, and use it for decryption. But I cannot seem to generate 128bit (or lower) keys, i always get the error 'Invalid flags specified'. When I try 512bits as keysize, ...
0
votes
1answer
226 views
SSCrypto and PHP
I'm using OpenSSL for registration stuff and I need to generate a license key from my server using RSA. The problem is that SSCrypto and PHP generate different digests. I tried everything. I'm very ...
2
votes
4answers
3k views
RSA key convert to PEM file
How can I convert this RSA public key:
109120132967399429278860960508995541528237502902798129123468757937266291492576446330739696001110 6039072308886100726558188253585034290 ...
0
votes
3answers
2k views
RSA hex keys to PEM format
I have information about n,p,q where n=pq and p and q are large prime numbers to be used for the RSA algorithm.
For example:
n: ...
0
votes
2answers
463 views
Finding my Valid RSA Host Key
I recently migrated one of my domains to a new hosting service, so I switched the DNS name servers, moved the content to the new hosting service, etc.
Now I am trying to log into the site (now on the ...
5
votes
3answers
2k views
How do I convert an XML RSA key to a PEM file?
I have two XML files, structured as follows:
My Key
<RSAKeyValue>
<Modulus> ... </Modulus>
<Exponent> ... </Exponent>
<P> ... </P>
<Q> ... ...
28
votes
3answers
13k views
What is the difference between DSA and RSA?
It appears they are both encryption algorithms that require public and private keys. Why would I pick one versus the other to provide encryption in my client server application?
2
votes
3answers
2k views
Implement a RSA algorithm in Java
I want to implement a RSA algorithm to encrypt an image (byte[]). To generate my two keys I used this piece of code :
KeyPairGenerator keygen = KeyPairGenerator.getInstance("RSA");
...
0
votes
2answers
249 views
Encryption key generated by java program is not accepted by Microsoft encryption API
We have generated RSA public key by our java program to encrypt the data in C++ before transmitting it but when we use this key to encrypt the data using Microsoft encryption API, it doesn't accepts ...
1
vote
5answers
2k views
OCR an RSA key fob (security token)
I put together a quick WinForm/embedded IE browser control which logs into our company's bank website each morning and scrapes/exports the desired deposit information (the bank is a smallish regional ...
2
votes
3answers
1k views
Gen public key from xml data file using M2Crypto for signature verification
I have pub key in xml format:
...
2
votes
2answers
7k views
How do I decrypt RSA data in C#.NET appropriately?
My server creates a RSACryptoServiceProvider and exports its parameters to a variable (RSAKeyInfo).
Then, the public key is sent to the client, and the client encrypts something with that public key.
...
25
votes
3answers
30k views
How to Generate Unique Public and Private Key via RSA
I am building a custom shopping cart where CC numbers and Exp date will be stored in a database until processing (then deleted). I need to encrypt this data (obviously).
I want to use the ...
2
votes
1answer
452 views
RSA pubkey file type detection
I got a RSA pubkey.dat (almost obvious what it is) that has the following structure on contents:
ASN1 Integer of around 1024 bits (Modulus)
ASN1 Integer (Exponent)
Blob of 256 bytes (Signature)
No ...
