Tagged Questions

10
votes
5answers
1k views

How do you verify an RSA SHA1 signature in Python?

I've got a string, a signature, and a public key, and I want to verify the signature on the string. The key looks like this: -----BEGIN PUBLIC KEY----- …
7
votes
5answers
202 views

Is this scenario secure?

I'm using RSA to encrypt communication between a server and a client. Lets say we have 2 Asymetric keys, key 1 and key2. The server has key1 (Private) from the start and the client has the …
6
votes
5answers
894 views

Having trouble decrypting in C# something encrypted on iPhone using RSA

I've spent two days on this so far and combed through every source at my disposal, so this is the last resort. I have an X509 certificate whose public key I have stored in the iPhone's keychain …
5
votes
4answers
1k views

How do rsa key fobs work?

Hello all, Could anyone explain to me in simple programmatic terms how these RSA key dongles work? I know Blizzard has them for WoW and paypal as well as some of the trading sites. Thanks!
5
votes
4answers
1k views

Simple encryption implementation in C

I've used a nice public domain C++ DES implementation before, but now I need some simple, basic, fast cryptography for an embedded system. It doesn't need to be unbreakable, but it does need to …
4
votes
4answers
4k views

How to read a PEM RSA private key from .NET

Hello, I've got an RSA private key in PEM format, is there a straightforward way to read that from .NET and instantiate an RSACryptoServiceProvider to decrypt data encrypted with the corresponding …
3
votes
3answers
154 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 = …
3
votes
3answers
153 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. System should also allow …
3
votes
3answers
1k 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 use the …
3
votes
3answers
382 views

How is public key used to decrypt in .NET assemblies?

.NET signed assemblies contain public key, but the public key is used for encryption in RSA, then how does .NET uses the public key for decryption of signed assemblies? Ok, the signed assemblies …
3
votes
8answers
2k views

RSA encryption library for c++

Hello I am developing a win32 application and I would like to use an RSA encryption library. What Library would you reccomend?
2
votes
3answers
121 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 to use an industry …
2
votes
5answers
857 views

how to use RSA to encrypt files (huge data) in C#

I'm new to encryption. I need to implement asymmetric encryption algorithm, which i think it uses private/public key. I started using a sample of RSACryptoServiceProvider. it was ok with small data to …
2
votes
5answers
237 views

Generating REALLY big primes

I'm playing around and trying to write an implementation of RSA. The problem is that I'm stuck on generating the massive prime numbers that are involved in generating a key pair. Could someone point …
2
votes
0answers
413 views

Web.Config encryption using RsaProtectedConfigurationProvider - “Bad Data” error

I am attempting to encrypt connection string values in the Web.Config file for an ASP.NET 2.0 web application, following the procedure described on MSDN. Using the RsaProtectedConfigurationProvider, I …

1 2 3 4 5 8 next
15 30 50 per page