RSA is a common public key algorithm, which can be used for encryption and signature. It is a core component of most the security protocols used on the Internet, including the SSL/TLS protocol suite. For IBM Rational Software Architect, use rational-rsa.
0
votes
0answers
49 views
RSA encrption using public key from .pem file
I am using RSA_public_encrypt function to send the encrypted data to socket. I am reading the public key from .PEM file using "pkey = PEM_read_PUBKEY(f, NULL, NULL, NULL);" function.
'pkey' ...
0
votes
1answer
58 views
RSA encrypting a large file
The thing is I have encrypted a file using rsa using this code that I came up with:
for (int a = 0; a <= iterations; a++)
{
byte[] plain;
int rsaLen = ...
0
votes
1answer
32 views
Why does Bouncy Castle RSAEngine.processblock method always returns 255 bytes when decrypting?
I am experiment with RSA using bouncy castle. I know this is the other way around to the general convention but to my understanding, it still should work theoretically.
I encrypt some data using an ...
0
votes
1answer
36 views
gmp_pow() will not accept a GMP number for exponent
I am playing around in PHP with RSA and big numbers. I need to be able to take numbers to the power of an exponent that has ~256 to ~512 bytes using gmp_pow(). Does anyone have any suggestions?
2
votes
1answer
55 views
A 1024 bits RSA algorithm with C
I am working on a small project with C language , it's an RSA text encrypting .
The code works but the problem is that it doesn't work if i choose a large key .
I think that the problem is due to the ...
1
vote
1answer
36 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
54 views
Decrypt gpg in Java without using Java.Runtime
I have a .gpg file and a RSA private key. How can I programatically decrypt it without using operating system? e.g. without using something like Runtime.getRuntime().exec("gpg -decrypt.....");
...
3
votes
1answer
41 views
What type of Reader to use when generating a Private Key in Go?
I need to generate a private key in Go. I am using the rsa package (http://golang.org/pkg/crypto/rsa/). In particular, it seems that I would like to use the GenerateKey method. One of the parameters ...
0
votes
1answer
31 views
Unable to verify a signature in python using PKI
I am struggling to port the following java code to python. I am using PyCrypto to read the publickKey but it fails with an assertionError:
keyDER = b64decode(publicKeyBase64)
seq = asn1.DerSequence()
...
1
vote
1answer
43 views
how to send somebody my (already generated) github public rsa key(send the key or the .pub file?)
I just set up Github and generated my ssh keys. I need to give my public rsa to somebody so they can allow me access to their git repo. Do I send them
a) my entire .pub file,
b) the contents of ...
0
votes
1answer
35 views
Check if an RSA key is correct before calling doFinal?
I am trying to create a program that will check digital signature using the javax.crypto.Cipher API.
My program works correctly as long as the RSA keys are paired correctly. However, when I have an ...
1
vote
1answer
106 views
OpenSSL RSA signature verification: hash and padding?
I am trying to write code to verify some RSA signatures. The signatures were made using the OpenSSL command-line tool, using the equivalent of this command line:
openssl dgst -sha1 -sign ...
0
votes
0answers
47 views
Exception when initializing PublicKey from RSA public key stored as a string (works on laptop, not on server)
I have a application I am working on that deals with handling certificates and I am running into a issue where my code works correct when I run in via JUnit tests locally on my laptop but when I ...
0
votes
1answer
29 views
RSA Decryption Printing NULL
I believe I am doing this right. How I see decrypting a file with RSA:
Read in each line of the file as a String
Set cipher.init(Cipher.DECRYPT_MODE, privateKey)
Convert String to char[] using ...
0
votes
0answers
16 views
Import model library into UML Profile RSA 8.5
I have created and deployed a model library. I am able to import the model library when I create a model although I am not able to import it into a UML profile.
-4
votes
1answer
74 views
0
votes
1answer
32 views
Finding primary factors of the number(which is part of the both keys) generated using RSA
I have public key generated by the RSA (e; n), and the private one (d; n). I have got all this 3 numbers for example:
n=113753..47267
e=4978..2634861
d=352...1223909
With that knowledge how to find ...
0
votes
2answers
27 views
Issue with longs dividing and then modding correctly in Python
I'm trying to implement a primality test for an RSA implementation I'm writing as an excercise. I'm mainly using Rabin-Miller, but I do have a Sieve of Eratosthenes formulating a list of all the ...
1
vote
3answers
132 views
Random Number Seed Generator: Using System On Time
I'm trying to understand why this code is a security flaw. From my understanding, it is not safe to generate a random number seed using the system time when the program is turned on, but how is that ...
0
votes
1answer
40 views
How to access a MS SQL Server public key in Java
We are trying to encrypt a file using a RSA 2048 public key created directly in the MS SQL Server. These public keys can supposedly be queried with sys.asymmetric_keys view. We don't really have ...
0
votes
2answers
50 views
Get cipher used to password encrypt private key
I have a private key used for RSA exchanges that is password protected. I know the password, so I can use the key, however, I do not know which cipher was used to do the password.
I have other keys ...
0
votes
1answer
80 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
45 views
Decrypt with public key, openssl_public_decrypt like
I've a server that sends me an encrypted message.
This message is encrypted with the server's private key and I'm trying to decrypt it using the public key.
The verify method doesn't fit my needs ...
1
vote
1answer
44 views
determining hash function used in digital signature
I have a digital signature (RSA - PKCS#1). After decrypting it with the RSA public key I get the following 128 bytes
00 01 ff ff ff .. ff 00 30 31 30 0d 06 09 60 86 48 01 65 03 04 02 01 05 00 04 20 ...
0
votes
0answers
30 views
kSecPaddingPKCS1 or kSecPaddingPKCS1SHA1 are not supported on server?
I'm trying to decrypt on my server (with SSL https okay) and get this error:
rsa routines: RSA_padding_check_PKCS1_type_2: block type is not 02
I believe it is error in the way I am encrypting in the ...
3
votes
1answer
81 views
How many prime numbers are there (available for RSA encryption)?
Am I mistaken in thinking that the security of RSA encryption, in general, is limited by the amount of known prime numbers?
To crack (or create) a private key, one has to combine the right pair of ...
1
vote
2answers
107 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
1answer
89 views
Use preexisting RSA SSH keys to decrypt a text in C#
I have a pair of RSA public/private keys generated by the 'ssh-keygen' command in a Linux computer. There is a Ruby application in this Linux computer that encrypts a string using this public key, and ...
1
vote
0answers
29 views
How to get jCryption work with django and python-rsa (or another python library)
I want to send some secret data to the client, so I want to encrypt it.
I'm using jCryption in client side. It uses handshaking in the beginning of the connection, the procedures happen as follows:
...
0
votes
2answers
244 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 = ...
0
votes
1answer
52 views
Dumping public key from private using libopenssl
Let say I want to have a code doing something like this openssl command in my c++ application.
openssl rsa -in private.pem -pubout -outform der -out ./out.pub
How can I do that?
I was look for a ...
0
votes
1answer
82 views
Openssl: Verify RSA encrypted data with public key in certificate
I have a base64 encoded digital signature in a file called digital_signatue1.txt:
LE3v7aHDOtCYEWrURYfxrq4tAx5zg0siBK0yBdYJTxWTFw/tLoEOcT0JZPRy8RMY
...
1
vote
1answer
95 views
Java Encryption with OpenSSL key
I have situation where I have generated a public/private key pair using OpenSSL for use with gdcmanon following the instructions listed on their website. Specifically, I used the following commands ...
0
votes
1answer
101 views
how to convert a BigInteger into a string of ascii
Was looking for some help on transforming a large on how to convert am large integer value into a a string of ascii characters;
After doing some work with RSA encryption/decryption i decrypted this ...
0
votes
1answer
67 views
c# equivalent of “java.security.spec.RSAPublicKeySpec” and “java.security.PublicKey”
I'm developing a new version in c# of an existing java application.
The existing application uses RSA encryption with java.security.spec.* and boncycastle api.
I'm looking for equivalent code in c# ...
2
votes
1answer
123 views
Digital signature made in C# does not verify in C++
I have a C# application which digitally signs data using RSA. The code is as follows:
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.ImportCspBlob(privateKeyBlob);
SHA1 sha1 = ...
0
votes
2answers
38 views
working with out of range integers in java
Working on a project dealing with RSA encyption and decryption and part of it is working with this number
int modulus = 270653957405596110781
which is a 68 bit number and i know long only goes ...
0
votes
1answer
92 views
Get AES Key from EVP_CIPHER_CTX
I'm using openssl trying to use an RSA public key, to encrypt an AES key, and use that AES to send large-ish data over HTTP(s) to a 3rd party site. I know that's a lot of encryption, the second layer ...
1
vote
0answers
38 views
Application “crashes” when i try to decrypt the CipherBuffer the second time
Hello i am trying to implement an iPhone app the takes notes and encrypts them and then decrypts them when you enter the correct PIN on a UIAlertView. When the Application loads for the first time i ...
0
votes
2answers
108 views
Encrypt NSString with RSA Algorithm with known modulus and exponent keys in iOS
In iOS app, I need to encrypt NSString with RSA Algorithm, I have known public modulus and exponent key.On Android side they have used bouncy castle ApI for RSA Encryption.Can some one help me how to ...
0
votes
0answers
58 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
64 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
1answer
36 views
0
votes
0answers
87 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 ...
0
votes
1answer
37 views
Openssl Generate Public Asymmetric Key
I am trying to output the public EC key parameters Qx and Qy from OpenSSL CLI. Is this possible?
0
votes
2answers
49 views
Saving a uint8_t ciphertext into DataModel
I am building a simple iphone (SDK6.1) application that encrypts some user's notes, stores the into a database and when user enters a password (does not need to be encrypted) it will decrypt his notes ...
1
vote
0answers
161 views
How to get RSA public key from PEM format
I am trying to get an RSAPublicKey object from a public key file which is PEM encoded . The file is in the format given below
-----BEGIN PUBLIC KEY-----
M67sdjFDSSTRWE%$HGF£$"F£$$£%$ etc...
-----END ...
0
votes
1answer
48 views
Generate keypair for EVP based on engine
Up until now I did the following:
rsa=RSA_generate_key(2048,RSA_F4,NULL,NULL);
if (rsa == NULL){
fprintf(stderr, "Could not generate keypair \r\n");
return EXIT_FAILURE;
} ...
0
votes
0answers
98 views
Rsa implementation using java
i am implementing rsa in java i have encountered a code which is given below it is showing plaintext in numeric form after decrypting the plaintext but i want it in simple english which i entered ...
0
votes
0answers
91 views
BigIntegers, gcd , modulus inverse to find public key
So, Im using java to find the public key of a RSA password. Right now Im unsure what I'm doing and also if it's correct.
I have this information for the public key.
C = 5449089907
n = p*q = ...


