Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
3answers
16k views

Truststore and Keystore Definitions

In Java, what's the difference between a keystore and a truststore?
14
votes
5answers
9k 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 ...
14
votes
6answers
2k views

Given a private key, is it possible to derive its public key?

From whatever little I understand by reading various material, public-private key pair are the basis of assymetric encryption and also something about choosing 2 prime numbers (which is roughly your ...
10
votes
2answers
2k views

RSA Encryption in Java: Cross Platform Issues?

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 ...
9
votes
1answer
174 views

how do I encrypt data in R?

I am adding a sentry handler to the R logging package. currently django-sentry validates the client (the application sending log records) based on a shared key which travels in clear text in a ...
9
votes
11answers
1k views

Cracking short RSA keys

I am given the following RSA keys. How can I determine what the values of p and q are? Public Key: (10142789312725007, 5) Private Key: (10142789312725007, 8114231289041741)
9
votes
7answers
444 views

Ok, so I've encrypted my data now where do I hide the key?

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 ...
7
votes
3answers
494 views

Are there any asymmetric encryption options for JavaScript?

I have to transfer some sensitive information over a JavaScript AJAX Call, over an unencrypted channel (HTTP, not HTTPS). I'd like to encrypt the data, but encryption on the JavaScript side means I ...
6
votes
1answer
827 views

X509Certificate encryption/decryption

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 & ...
5
votes
5answers
686 views

RSA: Encrypting message using multiple keys

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 ...
5
votes
6answers
1k views

Delphi asymmetric encryption

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 ...
5
votes
4answers
183 views

Is there a physical lock that can demonstrate asymmetric crytographic principles?

I wish to demonstrate asymmetric encryption using real-world locks. For example, I want to write a secret on a piece of paper and deposit it in a locked box. Is there a lock I can buy that comes with ...
4
votes
2answers
141 views

C# How do I do encryption?

I'm not asking for a tutorial with code, I'm trying to do the research, but I want to make sure I'm asking the right questions. What's the best form of encryption I can use out of the box with .NET? ...
4
votes
2answers
346 views

Should RSA public exponent be only in {3, 5, 17, 257 or 65537} due to security considerations?

In my project I'm using the value of public exponent of 4451h. I thought it's safe and ok until I started to use one commercial RSA encryption library. If I use this exponent with this library, it ...
4
votes
2answers
361 views

Asymmetric deterministic encryption (RSA) with Ruby

I was wondering if anyone knows of a way to deterministically encrypt a value in Ruby using an asymmetric encryption algorithm. For most use-cases one only cares that when you encrypt 'A' you get 'A' ...
4
votes
3answers
809 views

C/C++ encrypt/decrypt with public key

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 ...
4
votes
3answers
1k views

Java asymmetric encryption: preferred way to store public/private keys

This code generates a pair of public/private keys: KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA"); keyGen.initialize(1024); KeyPair keypair = keyGen.genKeyPair(); PrivateKey privateKey ...
4
votes
4answers
1k views

RSA private key encryption

Is there any way to perform private key encryption in C#? I know about the standard RSACryptoServiceProvider in System.Security.Cryptography, but these classes provide only public key encryption and ...
4
votes
2answers
2k views

RSA Encryption, getting bad length

When calling the following function : byte[] bytes = rsa.Encrypt(System.Text.UTF8Encoding.UTF8.GetBytes(stringToEncrypt), true); I am now getting the error: bad length. With a smaller string it ...
3
votes
1answer
76 views

Does anyone recognise this kind of public key?

For an application I want to write, the webservice gives me this public key, with which I have to encrypt the password for signing in. But I don't know what kind of encryption this might be. Is this ...
3
votes
4answers
349 views

What is the purpose of using separate key pairs for signing and encryption?

Hello My question is: Why do I need to use separate public key pairs for signing and encryption and not use the same key pair with RSA for example? These is any security problem with using the same ...
3
votes
3answers
1k views

PHP RSA encryption using private key and PKCS1

I need to encrypt a string using RSA, PKCS1, a private key and PHP. I could not find even a terminal command which can be used with exec(). Does anyone knows how to do it? Thanks!
3
votes
5answers
462 views

Asymmetric Encryption

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 message ...
3
votes
5answers
555 views

Encrypting large files using a public key

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 is ...
3
votes
2answers
2k views

How can I encrypt a user's password in Silverlight?

I have a Silverlight 3 app which connects to a server to perform various actions. My users log in using Forms Authentication but the actions they request are run on the server using the AppPool ...
3
votes
6answers
477 views

Why shouldn't we crypt with the private key in an asymmetrical cryptographic system?

In standard use of asymmetrical cryptographic system, encryption is done with public key, decryption with private key. Inversing the process, "encryption with private key" is called "signing". ...
3
votes
2answers
5k views

Any tutorials on public key encryption in java?

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'd like to ...
2
votes
1answer
60 views

asymmetric encryption using AES for iPhone

Team, I would like to have asymmetric encryption using AES algorithm for iPhone application using Objective C. I have widely seen symmetric encryption using AES, so im not sure about the support for ...
2
votes
3answers
151 views

RSA Encryption of large data in C#

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 ...
2
votes
2answers
135 views

Javascript asymmetric encryption and authentication

Some of the guys here are developing an application which incorporates some 'secure areas' accessible by logging in. In the past, the login form and subsequent 'secure' pages were all plain text ...
2
votes
1answer
240 views

RSA encryption library or Classes

I want to implement RSA encrytion/decryption in my App.I googled around the net to find any Library or Classes which perform the RSA encryption/decryption algorithm,but was not able to find any ...
2
votes
2answers
206 views

Porting code from c++ to c# - Encrypting with RSA PKCS#1 private key

I'm trying to port this piece of code from c++ to c#: ... strPrivateKey = "someBase64EncodedPrivateKey"; long sizeKey = DecodeBase64(strPrivateKey, pKey); const unsigned char* _pKey = pKey; ...
2
votes
6answers
153 views

Can I use asymmetric encryption with two private keys?

According to wikipedia (and other sources), asymmetric encryption always works like this: Party A has a public and private key Party B encrypts stuff with A's public key Party A decrypts stuff with ...
2
votes
3answers
599 views

Deterministic RSA encryption in Java

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 ...
2
votes
2answers
763 views

Postfix + MySQL ENCRYPT(), How does it verify the password with randomizing salt?

I've implemented my mail server as dictated here: http://library.linode.com/email/postfix/courier-mysql-ubuntu-9.10-karmic#configure_mail_aliases It works perfectly fine. My curiousity revolves ...
2
votes
2answers
500 views

Python Asymmetric Encryption: Using pre-generated prv/pub keys

Ok first off yes I have searched google and stackoverflow and done some reading (over 4 hours JUST in this sitting) have not found what I need for these reasons: Many of them suggest just launching ...
2
votes
4answers
325 views

what python package for rsa algorithm

looking to do RSA encryption on a short string in python. This is for a piece of user data that I want to store without staff (incl myself) being able to see it. The private key will be on a ...
2
votes
1answer
2k views

Java RSA Encrypt - Decrypt .NET - need help

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: ...
2
votes
5answers
864 views

Fast asymmetric cypher for C++ application

I'm looking for a fast asymmetric cypher algorithm to be used in C++ program. Our application accesses read-only data stored in archive (custom format, somewhat similar to tar), and I would like to ...
2
votes
6answers
276 views

Is is possible to encrypt in a different order than decrypting?

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: ...
2
votes
7answers
578 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 ...
2
votes
2answers
3k views

Opening an RSA private key from Ruby

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 ...
1
vote
0answers
24 views

KDF for asymmetric cryptography [migrated]

Background info: I am planning on making a filehost with which one can encrypt and upload files. To protect the data against any form of hacking, I'd like not to know the encryption key (K) used for a ...
1
vote
2answers
64 views

Private/Public Encryption in Python with Standard Library

Is there a module that has my searching has been unable to discover that would allow writing code like the following? The reason for wanting to write code like this is unimportant. All I am after is ...
1
vote
1answer
54 views

Java: How to create a RSA Public Key from the String

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 = ...
1
vote
0answers
57 views

decrypting file from eToken

I am new to cryptography, hence I want to ask about my company's requirements. We are using eToken with RSA support. I have developed a code that encrypt file with public key and stored it in ...
1
vote
2answers
146 views

Javascript + PHP Encryption with pidCrypt

I have been working on trying to implement an encryption mechanism for passing secure information on my website. My host charges extra for SSL, and I am not ready for the extra monetary commitment. ...
1
vote
1answer
132 views

How to distribute public key in asymmetric encryption algorithms?

There are two keys in asymmetric encryption algorithm public key and private key For the concept of client and server, it need to public key on server side to decrypt client's message. So my ...
1
vote
1answer
184 views

RSA encryption and decryption of a long message in java

I want to use java standard library, and as much as I know, its functions inputs are limited. So I implemented two methods to this purpose. Here they are: private byte[] RSAenc(String in) throws ...
1
vote
1answer
48 views

SSL + Additional Layer of Encryption

I'm wondering what to do in the case of a customer asking for a second layer of encryption on top of SSL? For example, I have an SSL tunnel, and the customer wants me to then use symmetric key ...

1 2 3