encryption-asymmetric Questions
2
Solved
On the one hand, I hear people saying that the two keys are totally interchangeable, the first one will decrypt what the second one encrypted. This makes me think that the two keys are interchangea...
Haig asked 9/2, 2012 at 9:52
1
Solved
I have the byte array of the RSA Public Key. I found on the internet that I can create a real PublicKey object of it by using this code:
PublicKey publicKey =
KeyFactory.getInstance("RSA").gener...
Veiling asked 12/12, 2011 at 21:11
3
Solved
This is my first post, so hope I haven't missed anything important. I'm doing a project in C# where I need to use public/private key encryption to encrypt a message and then send it over an SSL con...
Variate asked 7/12, 2011 at 15:37
1
I'm just starting to learn XML security. We have VS-2005 & ASP.Net 2.0. I want to send XML to a outside URL and it needs to be encrypted. I'm doing exactly what the MSDN articles ms229744 &...
Borneol asked 29/5, 2009 at 16:34
4
Solved
i am using a certificate generated by makecert which has both private and public key.
The java side uses this public key to encrypt the data and .net decrypts it back.
I am trying to decrypt Java'...
Mcwilliams asked 26/10, 2009 at 5:12
3
Solved
This is my first question on this site, and I only have a basic mathematical understanding of RSA, so please bear with me! :)
I'm writing a Java web application for my final year project at univer...
Bobbe asked 30/3, 2011 at 15:23
2
Solved
The Situation
I'm working with RSA encryption in Java. I'm trying to encrypt data on an HTC Saphire (32B) developer phone equipped with Cyanogenmod's Android 2.2 and then decrypt said data on a 64...
Chopine asked 7/2, 2011 at 20:22
3
Solved
I'm looking for two functions conceptually similar to these:
// returns the encrypted text
string encrypt( string public_key, string pass_phrase, string text );
// returns the original text
string...
Spermary asked 8/11, 2010 at 13:20
6
Solved
I'm looking for a Delphi implementation of an asymmetric encryption algorithm without any dependencies on external DLLs. Is there any available?
My goal is to encrypt/decrypt a string (or array of...
Oballa asked 8/6, 2010 at 15:40
5
Solved
I have an exam tomorrow in Advanced Development, but I am stuck on the topic of Encryption. I have read up on it at http://support.microsoft.com/kb/246071. However I am still confused.
If a messag...
Aparicio asked 30/8, 2010 at 19:49
5
I need to encrypt a 100KB file using a public key. I've been reading some posts claiming that it is not practical to directly encrypt large files using a public key, and that the preferred method i...
Smukler asked 16/8, 2010 at 8:2
3
Solved
This code generates a pair of public/private keys:
KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA");
keyGen.initialize(1024);
KeyPair keypair = keyGen.genKeyPair();
PrivateKey private...
Neddie asked 9/8, 2010 at 15:18
1
I would like to ask if i can use Asymmetric Crypto (like RSA or ECC) on android mobile phones, how, and what are the best libraries i should use.
Defloration asked 27/6, 2010 at 11:58
5
Solved
Is it possible to get additional security by encrypting a message using 2 or more RSA keys?
EDIT: A few clarifications:
The context I am most interested in doing this for is encrypting a randomly...
Itu asked 9/6, 2010 at 5:23
1
Solved
I am encrypting on JAVA using RSA and attempting to decrypt using .NET. I am including my JAVA code and .NET code in hopes that someone has some experience with this sort of thing.
JAVA Code:
by...
Hardandfast asked 23/4, 2010 at 13:23
6
Is it possible to encrypt in one order and decrypt in another? For example I've got the following:
plain_text.txt
Public/Private Key pair 1
Public/Private Key pair 2
Example
Encryption:
publi...
Vani asked 4/1, 2010 at 23:11
1
Solved
I've the task to transfer small binary messages (1 or 2 kb long) between a desktop application and mobile devices. The messages should be encrypted asymmetrically (RSA for instance). From what I've...
Sheply asked 4/6, 2009 at 13:39
2
Solved
I think I know how to create custom encrypted RSA keys, but how can I read one encrypted like ssh-keygen does?
I know I can do this:
OpenSSL::PKey::RSA.new(File.read('private_key'))
But then Op...
Mouser asked 25/10, 2008 at 1:47
7
I have a database that contains sensitive information. I can encrypt / decrypt the data on the read write operations. The problem is that I need to store the key in the application. If someone has ...
Heterogenous asked 22/1, 2009 at 14:15
2
Solved
I've been able find information on symmetric encryption and hashing but I've been having quite a bit of trouble finding much information on any sort of public key encryption for java. What I'...
Ceto asked 3/12, 2008 at 20:28
© 2022 - 2024 — McMap. All rights reserved.