1
vote
1answer
30 views
Java to Python RSA
I'm trying to encrypt a string from Java to Python, using the library Bouncy Castle J2ME on the client side and Python M2Crypto on the other.
Everything is pretty good, I can decr …
1
vote
3answers
73 views
How does the RSA private key passphrase work under the hood?
RSA private keys may be assigned a "passphrase" which - as I understand it - is intended to provide some secondary security in case someone makes off with the private key file.
Ho …
0
votes
2answers
23 views
Protecting RSACryptoServiceProvider private key with password or otherwise
I want to encrypt some server data using .NET's RSACryptoServiceProvider and decrypt it when someone enters a key/password via a web page. What are my options for protecting, or id …
1
vote
2answers
39 views
storing credit card info
So I would like to modify a PHP / MySQL application in order to store credit card but not cvv and bank account info securely. PCI DSS require 1024 RSA/DSA. A small number of users …
0
votes
1answer
39 views
Load RSA keys from files
Hello,
I used openSSL command to create 2 files: 1 for RSA public key & 1 for RSA private key. How do I recover RSA keys using C?
Specifically, I have these functions:
RSA_p …
0
votes
1answer
19 views
How do I do distributed UML development (à la FOSS)?
I have a UML project (built in IBM's Rational System Architect/Modeler, so stored in their XML format) that has grown quite large. Additionally, it now contains several pieces that …
0
votes
2answers
90 views
Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?
Using the Windows CryptoAPI, is there any way to specify which public exponent to use when generating a new key-pair (ie. 3 instead of 65537)?
As a bonus question: how would I acc …
0
votes
2answers
40 views
OpenSSL “Seal” in C (or via shell)
I'm working on porting some PHP code to C, that contacts a web API.
The issue I've come across is that the PHP code uses the function openssl_seal(), but I can't seem to find any …
1
vote
3answers
53 views
Small RSA or DSA lib without dependencies
Is there a small library for RSA or DSA without any dependencies like GMP or OpenSSL? (Written in C or Asm)
0
votes
2answers
48 views
How to import PKCS#8 RSA privateKey (created by OpenSSL) in C#
I'm trying to find a way to read a privateKey created using OpenSSL PKCS#8 RSA in C# without use external library.
Someone know how can i do this?
0
votes
2answers
116 views
Generate RSA key pair and encode private as string
Ello guys,
i am supposed to generate 512 RSA keypair and then encode my public key as a string. I cant find any good tutorial for someone who just begins with encryption....please …
0
votes
1answer
15 views
Grant access to SYSTEM account for RSA container on Windows Server 2003
I have a need to access an RSA private key from a Windows service running under the NT AUTHORITY\SYSTEM account. I'm able to install the private key on the server, and then make u …
0
votes
3answers
120 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
112 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
88 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 …
