1
vote
7answers
122 views
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?
Signing an assembly in .NET involves a public/private key pair. As far as I can tell from what I've read .NET uses the RSA algorithm and the private key to sign the assembly, checking it with the …
0
votes
4answers
70 views
How to sign an XML file with a RSA key in .NET?
I am trying to sign an XML file in C# .NET 3.5 with a private RSA Key generated by OpenSSL.
Here is how I proceeded: I converted the RSA key from PEM format to XML format using the chilkat framework …
0
votes
4answers
44 views
Access violation writing location
I have the following code:
#include <openssl/bn.h>
#include <openssl/rsa.h>
unsigned char* key;
RSA* rsa = RSA_new();
rsa = RSA_generate_key(1024,65537,NULL,NULL);
//init pubkey
…
0
votes
0answers
21 views
Sign with RSA-1024 an SHA-256 digest: what is the size?
Hi,
I was wondering:
1) if I compute the digest of some datas with SHA-512 => resulting in a hash of 64 bytes
2) and then I sign this hash with RSA-1024 => so a block of 128 bytes, which is bigger …
2
votes
1answer
46 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 decrypt it properly, but …
1
vote
3answers
85 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.
How is the passphrase …
0
votes
2answers
98 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 access this …
0
votes
1answer
53 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:
…
0
votes
2answers
47 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 way to do the same …
0
votes
2answers
160 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 advices, sample …
0
votes
2answers
66 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
38 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 ideally not even …
1
vote
2answers
43 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 will be given …
1
vote
3answers
61 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
3answers
140 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 private/public RSA …
