0
votes
3answers
70 views
Strength of RSA Encrypting an AES Key
I'm currently developing a system to transmit data between client and server, and was wondering what the strength of the encryption I planned to use was.
My thought was to have a …
1
vote
2answers
75 views
RSA Encryption: Java to PHP
I'm trying to implement RSA Encryption in both Java and PHP, but I can't seem to get PHP to recognize my Java public/private keys. Here is the java code to Encode/Decode the Public …
1
vote
3answers
53 views
How to encode an RSA key using PKCS12 in Python?
I'm using Python (under Google App Engine), and I have some RSA private keys that I need to export in PKCS#12 format. Is there anything out there that will assist me with this? I'm …
1
vote
1answer
68 views
iPhone: How to create a SecKeyRef from a public key file (PEM)
In order to send and receive encrypted messages from/to the iPhone I need to read a public key (server's public key) PEM file and create a SecKeyRef (later I could even store it on …
3
votes
4answers
150 views
How secure is this architecture?
Hi,
I'm building a system that need to collect some user sensitive data via secured web connection, store it securely on the server for later automated decryption and reuse. Syste …
3
votes
3answers
124 views
Java: Why does a 512-bit RSA KeyPairGenerator return 65 byte keys?
Hello, this is somewhat a newbie question probably. I'm generating keypairs with Java:
KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA");
SecureRandom random = SecureR …
0
votes
1answer
56 views
Performance of RSA based on keysize
Hi,
A theoretical question not depending on implementation, how much of a decrease in performance is 1024bit vs 4096bit RSA?
Thanks
0
votes
1answer
60 views
C# RSA with no padding
I'm busy trying to port Java code that looks like this
Cipher rsa = Cipher.getInstance("RSA/ECB/nopadding");
rsa.init(Cipher.DECRYPT_MODE, RSAPrivateKey);
decryptedDat …
2
votes
3answers
108 views
Which of the encryption aproaches should I use?
I need a system to exchange very secret data (source code that is a trade secret). I will use Crypto++ so practically I can use all encryption algorithms, although I really prefer …
1
vote
3answers
100 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 …
0
votes
1answer
92 views
Using a previously generated RSA public/private key with the .net framework
Hi all,
I have a pre-existing public/private key pair for RSA encryption which I need to use in .net .
All the examples I can find online demonstrate how to generate a new private/ …
0
votes
3answers
77 views
What format signature does Openssl pkeyutl expect?
I'm trying to verify a file that was signed by hashing with SHA-1 and encrypting the hash with an RSA private key.
Obviously I'm using the RSA public key to verify. The key is in …
3
votes
3answers
745 views
C# 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 …
0
votes
4answers
148 views
C# RSA Decryption issue
I have this function I am using to decrypt values that works fine on my dev machine. But when run in production on another server - gives this exact error message :
The system can …
0
votes
2answers
224 views
C#: How to encrypt/decrypt a string?
Following up on this question, I would like to know what an RSA key is, and how I would go about creating and using one.
Thanks in advance.
