Tagged Questions
-1
votes
0answers
17 views
Which algorithm encrypt byte array with public key (modulus , exponent) in c# [closed]
I want to encrypt array byte
for example
{0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8}
I want to encrypt the array with public key (modulus AND exponent)
Please help me
-2
votes
1answer
35 views
One way encryption
What secure algorithms out there can offer the following scheme?
Private Key encrypts a piece of text, the piece of text can be decrypted with a Public Key which is different than the original ...
0
votes
0answers
22 views
Windows Phone 8 RSA Encryption
Hi i am trying o generate my public key for my RSA 4096 encryption in my windows phone 8 ecryption app
i am using this method:
RSACryptoServiceProvider rsaProvider = new ...
0
votes
1answer
21 views
Securing information from a retail POS system
I have created a back-end/processing/statistics for POS transactions for a retail store chain. The thing is, now it is time to move from alpha to beta, and we need some sort of safety for the incoming ...
-1
votes
1answer
19 views
Why is RSA using fixed point type numbers? [closed]
Why is RSA using fixed point type numbers? And not floating point type?
Is it because the implementation of floating type arithmetics are to various?
Is it because only the fixed point arithmetics ...
0
votes
0answers
72 views
“OpenSSL::PKey::RSAError: padding check failed” exception, why?
I've been developing a SSL keys for my application, and I've got a private key and a public one. However, when I try to decrypt it, it raises "OpenSSL::PKey::RSAError: padding check failed". Why?
...
0
votes
2answers
46 views
Win32 Encryption with the same size
I want to encrypt an array of 15 byte. The problem is I want the cipher text to be of the same size.
What I did as
Make certificate: makecert.exe -n "CN=me" -sv PrivateKey.pvk -pe Certificate.cer
...
1
vote
1answer
38 views
What determines the size of the message in the algorithm RSA?
I read about RSA algorithm and How it work? But I don't understand some think.I ask for plaintext length
Why specify the size of the plaintext in the 64-bit algorithm rsa?
also
Is plaintext length is ...
0
votes
1answer
122 views
Bouncy Castle Encryption
I have a requirment to send PGP Encrypted CSV Files to SFTP and i know nothing aboutr PGP. After a lot of research I could find following code on internet using 'Bouncy Castle' Library. The code seems ...
0
votes
2answers
111 views
encrypt/decrypt public/private android
How to encrypt/decrypt public/private .
I am assuming that means the key is dynamic and never the same for a string.
I would like to know if there is any library for doing so or step by ...
2
votes
1answer
111 views
Decrypt TLS (Diffie–Hellman) messages using Wireshark?
Is it possible to decrypt and see messages encrypted over TLS using Diffie–Hellman algorithm using Wireshark?
0
votes
1answer
89 views
RSA : Encrypt in Javascript and Decrypt in Php
I've found many websites with something related to the subject line (few are in stackoverflow.com itself). However, unfortunately I couldnt get what I want.
What I want is - I've a public-private key ...
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
2answers
298 views
RSA Implementation in C#
I am trying to implement the RSA Algorithm in C#. The code below works when p and q are small, but not when trying to replicate RSA-100 or greater where p and q are very large.
For example when:
p = ...
1
vote
2answers
91 views
Public Key Encryption
I was thinking about communication between two computers using public-key encryption.
Let us assume that on one computer side I generate a private key and a public key. If I send the public key to ...
0
votes
1answer
68 views
RSA Encryption in iPhone using existing Public Key and MOD
I have RSA Encryption implemented in Android using BouncyCastle API. I have Public Key and MOD which I want to use for iPhone app. The only thing I am concern with using RSA encryption is the ...
0
votes
0answers
90 views
RSA decryption knowing n,p,q and cipher only
I would like to decrypt a cipher in RSA. I have n,p, q and the cipher.
I do not have e or d. I know that i should calculate k = (p-1)*(q-1).
d = 1/e mod k and gcd(e,k) has to be 1.
So, my question ...
-1
votes
3answers
220 views
How to import a Public Key into RSA For decryption
This may seem like a stupid question but I have been searching for the last hour and a half. I have a message that is encrypted with a PRIVATE KEY of a RSA key pair. I have the PUBLIC KEY that I need ...
0
votes
1answer
46 views
Encrypted Key Exchange understanding
I am trying to understand the Encrypted Key Exchange mechanism. I got a little confused with this illustration:
And did not find a lot of useful reference out there. Can anyone please explain the ...
1
vote
1answer
38 views
How to read an encrypted directory file using different IIS user
I would like to read/access a file which from an encrypted directory using IIS on browser?
2
votes
2answers
204 views
Java strong encryption - standalone library- source code only
I am looking for a Java based encryption library with support for strong encryption.
I am aware of the Java Cryptography Extension but to use it I would like to access the source code first, modify ...
3
votes
0answers
305 views
RSA private key format
I was trying to find a way to replicate the session-id decoding of mega.co.nz in Ruby using OpenSSL. But, unfortunately, I'm not a cryptography expert.
The problem is I don't understand/recognise the ...
1
vote
3answers
441 views
how to encrypt a file using private key in gpg
I'm producing an update for some systems and I want to encrypt the updates for keeping confidentiality , integrity and validity of my signature. I want to encrypt the file with my private key and ...
-3
votes
1answer
189 views
encrypt/decrypt sensitive(mostly passwords) data in our java spring based application
We are developing an application using java spring framework to manage multiple devices automatically. In the initial configuration of our application user selects the devices that needed to be ...
0
votes
2answers
176 views
Exporting public key in pkcs#1 format on iOS?
How does one export an RSA public key that has been generated with SecKeyGeneratePair in pkcs#8 format?
I'm currently writing an iOS app that needs to be able to generate RSA private/public key ...
1
vote
2answers
226 views
Javascript RSA key pair generation [closed]
Hello I'm looking for a library or script in Javascript that I can use to create an RSA public key and private key pair.
The main purpose is to generate for each user (while registration) a key pair ...
1
vote
1answer
133 views
How to combine symmetric and asymmetric encryption?
When talking about asymmetric encryption it is often said that due to some reasons you should not encrypt your entire message asymmetrically, e.g. performance considerations.
The usually suggested ...
1
vote
1answer
355 views
RSA 2048 Encryption Decryption - Exception
I am trying to encrypt and decrypt the data with RSA 2048.
We have one public key and private key and will be using same throughout.
but the problem is, when I decrypt, I am getting ...
1
vote
2answers
203 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 ...
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
80 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 ...
1
vote
1answer
168 views
How / Should I Encrypt Variable Size Data with RSA (RSACryptoServiceProvider)
In my research I have found mixed messages on this subject so I'm looking for expertise to explain the best approach to encrypting variable amounts of data.
Requirements:
[Edit: Adding additional ...
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 ...
3
votes
2answers
3k views
RSA Public Key format
Where can i find some documentation on the format of an RSA public key?
An RSA public key formatted by OpenSSH:
ssh-rsa ...
0
votes
1answer
49 views
Where can I find a description of BrowserID local verification
The FAQ recommends I don't do local verification of BrowserID (persona) security assertions, however I've never been good at following instructions.
So... I want to implement local verification ...
0
votes
0answers
52 views
Decrypt on first run system only
I want to create an application where I encrypt a file on my system.
The file should be decrypted automatically on the First system it is run on maybe from some removable device like a USB Drive.
It ...
3
votes
5answers
220 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
68 views
Encrypt file in Rails 3.2
I want to encrypt a binary file with an asymetric key from my filesystem within rails (and then deliver it via email).
Can you recommend me how to do this? is it possible via bcrypt?
Didnt found so ...
2
votes
2answers
1k views
RSA Encryption Decryption in Android
I am implementing a demo for RSA Encryption and Decryption in Android. I can Perform Encryption very well.But In Decryption I got an Exception..>>java.security.InvalidKeyException: unknown key type ...
2
votes
1answer
249 views
Private/Public key variant for encrypting data online and decrypting with multiple different keys
Assume the following example:
I have an online service where user can register and enter personal data. Now I want to encrypt these data. I have a private key Pr1 and public key Pu1.
User logs in ...
4
votes
1answer
99 views
java exchanging public keys through a trusted server
I wanted to build a relay server to which can securely relay messages between 2 peers (for nat traversal purpose) for P2P communication. Particularly, I refered to the steps in the diagram in this ...
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 ...
0
votes
1answer
58 views
Java tutorial on file exchange: why put the document in a jar before encryption?
I want a user to sign a document using asymetric key.
I read the tut here http://docs.oracle.com/javase/tutorial/security/toolfilex/index.html
I don't understand why the tut requested to put the doc ...
0
votes
1answer
49 views
Empty PGPKeyRing or PGPKeyRingCollection in Bouncy Castle
How to create an empty PGPKeyRing or PGPKeyRingCollection in Bouncy Castle ?
0
votes
1answer
835 views
How to Create SeckeyRef from exponent and modulus of Public key and use in SecKeyEncrypt method
Anyone please help in Creating SecKeyRef from Exponent and Modulus being my Public exponent = 010001
and Public Modulus ...
1
vote
1answer
171 views
Using RSA to protect license files
I want to use RSA to protect license files in an application. The idea is as follows:
Create a license file (plaintext).
Create an RSA-keypair.
Use the public key to encrypt the license file.
Put ...
0
votes
2answers
675 views
Encrypt Post Data Before Sending
I've been searching for a solution to this problem for some time. I need a way to encrypt form data using JS. Then I need to be able to decrypt it using PHP. A public/private key system seems perfect, ...
-6
votes
1answer
499 views
RSA encryption with public key [closed]
I want to encrypt my password in RSA encryption with key XXX..XX , for my new android application login process, Any body have the solution ?
-2
votes
1answer
99 views
Encryption for client and server with Android [closed]
I need to implement encryption on my app for both client and server side, I really don't know how to go about it. I have seen a few tutorial but they are hardly easy to grasp. I would like to know ...
1
vote
0answers
83 views
php gnupg email marketing encrypt with public key
I want to use the GNUPG Public Key for encryption of the text and send emails. I know how to encrypt the file but i din't know how to send the email, along with Public Key, so that any Email Client ...



