A type of encryption which uses one key to encrypt a message and another to decrypt the message.
1
vote
1answer
28 views
Partial encryption using AES - IOS application
I would like to apply the encryption & decryption technique in one my downloading concept. I want to do the partial encryption using AES 256. Is it possible to do it? is it have any algorithms ...
1
vote
0answers
15 views
Is it unsecure to cache a SecKeyRef of the public and private key in memory?
I saw this QA about encrypting and decrypting data using the iOS Security.framework where the code in the answer pointed to Apple's Key Programming Guide.
The codes in QA and Apple reference both ...
0
votes
0answers
54 views
RSA and AES encryption
I am looking at the feasibility for using Chrome apps for the front end of some applications I am working on. (As an aside, if anyone has any thoughts on this - put it in the comments)
I would be ...
0
votes
0answers
17 views
Cipher.unwrap leads to double-length key
I Use this code to Wrap a AES-Key with an RSA PublicKey:
(forWrapping = RSA-Key, toBeWrapped = AES-key)
Cipher cipher = Cipher.getInstance("RSA", "BC");
cipher.init(Cipher.WRAP_MODE, forWrapping);
...
0
votes
0answers
66 views
AES sending 32 bytes from Java application, only reading 29 bytes from C# application
A college's mailroom is in dire need of new software to help with their operations. The current program was written back in the early '90s in what they believe is python. Two others and myself, are ...
0
votes
0answers
23 views
Asymetric encryption of text that can handle any size
we're in need to encrypt 1 column in DB / 1 attribute in hibernate entity. App will run on Tomcat, so idea is to use Tomcat's keystore, have encryption done by public key and decryption by private. ...
1
vote
2answers
113 views
How long would it take to factor a RSA 128-bit key length? [closed]
Ive done some research online and it seems to suggest the recommended key length for RSA encryption is 1024-bits. However i have a question as to how long would it take to factor a 128-bit RSA key ...
0
votes
0answers
68 views
Construct RSACryptoServiceProvider from public key (not certificate)
I am working on a project where I need to use a "public key" to encrypt a message using RSA algorithm. I was provided with a certificate and my first thought was to use Public Key from that ...
0
votes
1answer
264 views
Public key encryption with RSACryptoServiceProvider
I have been over an article at CodeProject a for a while that explains how to encrypt and decrypt using the RSA provider:
RSA Private Key Encryption
While the old version from 2009 was buggy, the ...
1
vote
1answer
70 views
Create bouncycastle PGPSecretKey with an email
I need to create a public key for a unix machine to send me encrypted data.
What I do is use the following constructor for creating the PGPSecreyKey.
PGPSecretKey secretKey = new ...
-5
votes
2answers
40 views
Where RSA is used? [closed]
Someone please state two or three applications of RSA algorithm. I heard that RSA is used for SSL. Is that true?
0
votes
1answer
103 views
Create asymmetric key from a passphrase
I want to allow users on my site to create an asymmetric private & public key so they can:
upload the public key to the site so my web application can encrypt
files they upload
download files ...
0
votes
2answers
60 views
Storing sensitive data in mySql
I am lookin to harden security on one of my client sites. There is no payment provider set up so sensitive Direct Debit information needs to be on a mySql server. This Direct Debit information needs ...
1
vote
2answers
1k views
Decryption with openssl not working
Here is my php script
<?php
$pubfile = fopen("public_key.pem", "r");
$public = fread($pubfile, 8192);
fclose($pubfile);
openssl_get_publickey($public);
$prifile = fopen("private_key.pem", "r");
...
-1
votes
1answer
45 views
Updating an Assembly with an Asymmetric Key
I have previously created an assembly with VS 2010 and signed it with a key. I ran a script like this below:
USE master;
GO
CREATE ASYMMETRIC KEY SQLCLRPSBatch20Key FROM EXECUTABLE FILE = ...
0
votes
2answers
149 views
Software license decryption with a public key stored in the application binary
With reference to the answer of this question I can not understand how can the software licensing scheme works if the Private Key is kept on the license server and the public key is shipped in the ...
0
votes
2answers
403 views
Decrypt a larger text using RSA private key
I have to encrypt and decrypt a large string using RSA public key and private key. I have managed to encrypt a larger text using the following sample code
public static string Encrypt(string ...
0
votes
2answers
428 views
How do I use RSACryptoServiceProvider to decrypt, given that I only have p, q, d and u?
I am creating a simple client app to experiment with Mega and I am having trouble wrapping my head around the way RSA is used. Let's take, for example, the decryption of the session ID - this is one ...
2
votes
0answers
140 views
PKI Protected Web Service. Getting HTTP 413: Request entity too large
I have been trying to implement a secure way to authenticate web servers which are calling a .Net SOAP based web service via security certificates.
I have setup a certificate authority on the ...
1
vote
2answers
311 views
How to encrypt and decrypt plain text with a RSA keys in Go?
I am trying to write a utility program which encrypts and decrypts plain text files using a RSA key pair. The RSA keys were generated with ssh-keygen and are stored in .ssh, as usual.
I am having ...
-1
votes
1answer
294 views
How to perform asymmetric encryption with Botan
I'm using Botan to generate hash, perform encryption with aes 256 and now i want to perform asymmetric encryption with that. Reading this page: http://botan.randombit.net/pubkey.html
I created a code ...
0
votes
0answers
166 views
java.security.SignatureException: Signature length not correct: got 66 but was expecting 64
This is how I am generating a key pair:
private void generateKeyPair() throws NoSuchAlgorithmException, IOException {
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
// ...
0
votes
1answer
67 views
simple crypto lib/tool for config settings
My app stores db connection-strings in an xml config file that is stored under source-control ( svn ).
When deployed in prod, my app needs to retrieve the encrypted strings and decrypt them.
The ...
0
votes
0answers
57 views
Encrypting a string on server A and decrypting it on server B with the same certificate not working
We are using a certificate for encrypting and decrypting data using the RSACryptoServiceProvider. We have also exported the same certificate to another server. In both instances, encryption and ...
0
votes
1answer
216 views
BadPaddingException: invalid ciphertext
I would like some help as this is my first time in coding cryptography code.
The encryption code appears to be working correctly, but the decryption throws an error.
The error I get is:
...
3
votes
1answer
284 views
Questions about the NaCL crypto library
I was looking for libraries to implement an encryption system and was interested in using the NaCl: Networking and Cryptography library specifically the box function. Obviously, it uses symmetric ...
1
vote
1answer
59 views
Coefficient matrix in AES in Decryption stage
I know that in AES, in encryption stage, in MixColumns, we use [4x4] coefficient matrix with values having only (00,01,02,03). Does anyone know what values are used for coefficient matrix in ...
1
vote
2answers
204 views
How to change the passphrase of a private key using PHP's OpenSSL module?
I'm using PHP's OpenSSL module for asymmetric encryption; openssl_pkey_new(), openssl_pkey_export(), and openssl_pkey_get_details() to create the keypair, and openssl_public_encrypt and ...
2
votes
1answer
502 views
How can I use RSA to Encrypt/Decrypt ASP.Net Forms Authentication Ticket
Istead of using FormsAuthentication.Encrypt / FormsAuthentication.Decrypt, is it possible to use an existing RSA container in the machine key store to do the encryption/decryption of the ticket.
The ...
0
votes
0answers
157 views
How to decrypt an RSA encrypted java package [closed]
How to decrypt a file in iOS file is encrypted in Java. I have Public & Private keys, file is encrypted using RSA encryption. I have gone through some sample code but they are supporting string ...
1
vote
2answers
87 views
how does RSA distribute keys to the sender and receiver?
I'm working on a cryptography project that involes using RSA encryption algorithm, i have implemented the RSA algorithm and understand it, but how can i securely send the private key to the receiver?
0
votes
1answer
45 views
One text encypted with multiple keys. Is it secure?
Let's say i have one plaintext and i encrypt it with different keys (each on its own). Is it possible to find the plaintext from these encypted ciphers or how hard is it to resample the text?
Does ...
0
votes
0answers
82 views
Encryption & Digital Signatures
I have Some queries on Encryption that I just cannot find the answer for anywhere....
When performing Asymmetric / Public Key Encryption is the same actual Algorithm / Function used to perform both ...
0
votes
0answers
258 views
PKI encryption and decryption in java using certificate file [closed]
i am new to asymmetric cipher and trying to run a test program. I created a self signed certificate file and private key file using the below openssl command. The intention is to publish the ...
1
vote
1answer
115 views
How should I secure the Private Key when using Asymmetric RSA encryption?
I am using the RSACryptoServiceProvider and C#. I have a web server (A) that will be encrypting data and storing it in a database. I have another server (B) that will be reading the encrypted data ...
2
votes
1answer
190 views
Secure login within Phonegap
I'm creating a Phonegap application which needs to allow a user to log into our Central Authentication Service.
My concern is that, since the files on the Phone are being loaded locally (via ...
2
votes
1answer
133 views
Does mysql have asymmetric encryption capabilities?
My Question is simple - is there a build in functionality, like AES_ENCRYPT / AES_DECRYPT, for asymmetric (public / private key) encryption in MySQL?
Sadly, I only find answers that involve PHP (to ...
0
votes
0answers
68 views
PreserveWhitespace property is not working when using encryption DecryptDocument
Seems like PreserveWhitespace property is not working when using encryption DecryptDocument. When I don't use encryption the project loading works fine. However when I enable encryption, then some ...
0
votes
2answers
118 views
Asymmetric encryption where the receiving party can decrypt - but must be completely unable to encrypt the data
What I have is a client server scenario, and a payload (x).
The server generates x and encrypts it : enc(x)
enc(x) is sent to the client
The client decrypts the data to get x
However, the ...
7
votes
1answer
576 views
RSA keys in Perl
I have simple RSA encoding/decoding script, such as:
use Crypt::RSA;
my $rsa = new Crypt::RSA;
my($public, $private) = $rsa->keygen( Size => 2048 )
or die ...
3
votes
5answers
221 views
Two private key asymmetric encryption - possible?
I am wondering if there exists some asymmetric encryption algorithm that would work with two different private keys, so that the encrypted message can be decrypted by either one of such private keys?
0
votes
1answer
183 views
How to specify message body encryption method for Rampart?
I am working with Axis2 1.6.1 + Rampart 1.6.1 on the server side of a web service.
I've been asked to employ RSA 1.5 for message body encryption. From what I can tell (by inspecting captured SOAP ...
0
votes
1answer
61 views
Should I secure/hide prime and base numbers for Diffie-Hellmann?
As we know DH algorithm based upon 2 large prime numbers, which are used to be called as prime and base
I am writing app which implements DH key exchange algorithm. From security point of view should ...
0
votes
1answer
269 views
RsaProtectedConfigurationProvider implementation vs RSACryptoServiceProvider c#
If RSACryptoServiceProvider cannot Encrypt data larger than it's KeySize, how RsaProtectedConfigurationProvider is implemented in the .Net framework?
I am working on a utility that is going to be ...
0
votes
0answers
96 views
Why does my conversion from uint8_t to NSString fail?
I am trying to encrypt an NSString object. SecKeyEncrypt works fine, but I need my encrypted string (cipher text) to be an NSString object. When I use the NSString method stringWithUTF8String to ...
0
votes
1answer
67 views
Shibboleth user attribute encryption [closed]
How does Shibboleth guarantee that 3rd parties do noet get access to user attributes contained in SAML 2.0 assertion exchanged between IdP and SP?
Is it correct that all user attributes are encrypted ...
0
votes
3answers
90 views
Does two symmetric encryption algorithms return the same result in two different OS and Programming Framework?
Simply in .Net I encrypt the the Id By DES a Symmetric Encryption algorithm and specific Key in .NET .
I'm wondering could my partner in Java decrypt just by knowing the name of algorithm and the ...
0
votes
0answers
60 views
Signing data with javascript why it doesn't work with these keys?
I tested the js tool http://shop-js.sourceforge.net/crypto2.htm mentionned here Sign data using private key on client-side (javascript)
with a pfx certificate I self created for test I converted to ...
1
vote
1answer
612 views
Best Asymmetric encryption algorithm available in java API?
I am following this article on Encryption/Decryption. Currently I am using RSA algorithm for encryption and decryption using private and public key respectively.
I am not sure whether RSA is good ...
4
votes
1answer
132 views
Assymetric key encryption for securing SOAP webservice
I'd like to authenticate the caller of my SOAP webservice (deployed in Ruby 1.8.7/Rails 2.3.5using datanoise gem in Red Hat enterprise linux 5) using some encrypted tag in the XML requests. Normally ...