Tagged Questions
0
votes
0answers
37 views
How to load in Python-RSA a public RSA key from a file generated with openssl?
I generated a private and a public key with the following commands:
openssl genrsa -out private_key.pem 512
openssl rsa -in private_key.pem -pubout -out public_key.pem
I then tried to load them ...
0
votes
1answer
47 views
Decripting RSA in python
I am trying to figure out an easy way to decode a RSA cipher, that is using (p,q,e,c) as its variables were e is the private key.
If you you know anything about this please tell me!
0
votes
0answers
31 views
Sending encrypted message over network in python using pycrypto and pickle
My code looks as follows:
obj = Msg(ip_add, port) #Msg is a class
obj.text = pickle.dumps(obj)
enc_text = publickey.encrypt(msg,32)
enc = pickle.dumps(enc_text)
listElement.cSock.sendall(enc)
On ...
0
votes
1answer
36 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()
...
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
0answers
31 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:
...
-1
votes
1answer
40 views
How to install the Python-RSA 3.1.1 package in Python 3.2? [closed]
So far I've tried these methods to install the package
pip install rsa andpython setup.py install
but it seems like I installed the one for python2.7.
How can I install the one for python3.2? Or ...
0
votes
1answer
169 views
Generating mega's RSA key pair in python [closed]
Recently I got stuck when trying to generate an RSA keypair for mega using Python.
So my question is :
How can i convert the RSA attributes from the Array format (used in JavaScript) into "long ...
0
votes
0answers
37 views
pydkim for DKIM-Signature, what is for domainkeys-signature?
I am using pydkim to sign my email. it generates: DKIM-Signature
but authentication results shows:
Authentication-Results: domainkeys=neutral (no sig); dkim=pass (ok)
is there any other tool in ...
0
votes
2answers
81 views
Methods all need to be indented one level in to indicate that they are methods of the class in python
I'm following the RSA algorithm from the Wiki: http://en.wikipedia.org/wiki/RSA_(algorithm)
I am using Python 3.3.0 and I'm trying to do RSA Encryption and I ran into two problems that I don't know ...
2
votes
1answer
361 views
Python: Paramiko authentication via public key “not a valid RSA”
I'm attempting to communicate between two Solaris servers via Paramiko. I can't use my private key for security reasons so am attempting to use id_rsa.pub. Originally I tried this:
...
0
votes
0answers
80 views
Signing parts of a URL with a RSAKey using Python instead of C#
I do have a private RSAKey (in XML format) that was generated by a .NET class. Those keys, are regularly used to sign parts of a URL. I am trying to sign these URLs with the existing keys via Python, ...
2
votes
1answer
957 views
How do I use a X509 certificate with PyCrypto?
I want to encrypt some data in python with PyCrypto.
However I get an error when using key = RSA.importKey(pubkey):
RSA key format is not supported
The key was generated with:
openssl req -x509 ...
0
votes
1answer
115 views
Computation time for RSA? [closed]
I'm quite new to programming and had done a Cryptography course on Coursera before I stared learning Python. Recently, as a project, I wanted to write my own code for the RSA algorithm. I have just ...
0
votes
1answer
98 views
Randint error in Python?
I'm writing up the code for the RSA algorithm as a project. With those who are familiar woth this encryption system,the function below calculates the value of phi(n). However when I run this, it comes ...
0
votes
1answer
93 views
Full Hexadecimal Representation in Python?
I've writing a RSA implementation in Python and have now successfully encrypted it however when it prints out the cipher, every time it comes out '0x1L.' I believe this is a long number, however I do ...
1
vote
0answers
330 views
fix of python rsa algorithm
I was doing a previous thread question of euclidean algorithm and multiplicative inverse and then I understood that is better post the complete code and do the rigth question: I am doing python rsa ...
0
votes
0answers
117 views
RSA signature interoperability
I'm generating an RSA signature in python, and hoping to verify it on a different machine in C.
I notice that PyCrypto provides 2 signature types :
Crypto.Signature.PKCS1_PSS: RSA digital ...
1
vote
2answers
185 views
Lower Limit on RSA message length in M2Crypto
I am trying to encode a message using a public key provided to me by an external site using Python M2Crypto's RSA. Essentially, I am doing something like this:
from M2Crypto import RSA
import os
rsa ...
1
vote
3answers
280 views
Encrypt in C++ and decrypt in Python
What libraries do you know that can be used to encrypt in C/C++ and decrypt in python for the RSA/AES/DES algorithms?
We are going to use one of the those algorithms to encrypt some parameters in ...
1
vote
1answer
238 views
how to make a PKCS8 RSA signature in python
I have pkcs8_rsa_private_key file which generate by openssl from a rsa_private_key.pem file.
I need make a signature by the private key in python, make the same signature with below java code.
...
1
vote
2answers
387 views
python crypto rsa issue
There seems to be a problem with RSA encryption/decryption in python Crypto package:
from Crypto.PublicKey import RSA
from os import urandom
def test(keylen, datalen, rand_len):
k = ...
1
vote
3answers
244 views
Suitable Language for RSA implementation [closed]
I want to implement an RSA cryptosystem algorithm for a university project and I' m trying to decide which programming language to use. I am very familiar with C so it would be a convenient choice. ...
5
votes
3answers
999 views
I have modulus and private exponent. How to construct RSA private key and sign a message?
I am newbie in cryptography and pycrypto.
I have modulus n and private exponent d. From what I understand after reading some docs private key consists of n and d.
I need to sign a message and I ...
0
votes
1answer
312 views
M2Crypto.rsa privat key components
Can anybody tell me, how to get p,q,dp,dq and u component of rsa private key?
loading of the key:
string = open(keyfile,"rb").read();
bio = BIO.MemoryBuffer(string);
rsa = RSA.load_key_bio(bio);
...
0
votes
1answer
336 views
M2Crypto - import keys from non-standard file?
I have a file with the public exponent and modulus in it. They're not in pem or xml or der format, they're just the values written in at their offsets.
How can I make a public key out of them with ...
1
vote
2answers
359 views
Trying to generate RSA signature with Python from working C# code
I'm using someone else's code to generate an RSA signature used for verification in xbox 360 save files. The code reads the needed values from a files and correctly generates the signature.
The code ...
0
votes
3answers
1k views
PyCrypto: Encrypt an string twice using RSA and PKCS#1
Hello everyone.
I was wondering if it's possible to do a double RSA/PKCS#1 encryption with PyCrypto.
I have a server that has its own RSA key (generated with the openssl command when said server is ...
6
votes
2answers
587 views
Cannot figure out how to publish public key generated on iPhone
I am using the commoncrypto library on the iPhone to create a pair of RSA keys and I am trying to send the public key to a server (Python) so that I can use it to verify a signature sent from the ...
0
votes
3answers
391 views
PyCrypto: Encode chinese charaters with RSA asymmetric key
I am trying to use PyCrypto to encrypt/decrypt some strings, and I am having troubles with Chinese characters.
When I try to encrypt "ni-hao" (hello)...
pemFile = ...
9
votes
2answers
1k views
Securing data in the google app engine datastore
Our google app engine app stores a fair amount of personally identifying information (email, ssn, etc) to identify users. I'm looking for advice as to how to secure that data.
My current strategy
...
4
votes
1answer
367 views
Trouble interpolating RSA signatures between Python and Java/Scala
I'm writing a client in Python2 with the python-crypto API to digitally sign an XML file and I have a service written in Scala that is suppose to verify the signature. My Python code looks something ...
3
votes
1answer
1k views
PyCrypto: Generate RSA key protected with DES3 password
I have been able to create a RSA key protected by password with DES3 (well... I think because I'm very new to this encryption world) by using the command:
openssl genrsa -out "/tmp/myKey.pem" ...
3
votes
1answer
2k views
RSA signing and verification with C#,BouncyCastle and imported RSA key - Working Python example and non-working C# code sample inside
I have been tearing what is left of my hair out trying to get a trivial example of RSA data signing and verification with C# and BouncyCastle working.
RSACryptoServiceProvider.VerifyHash() always ...
0
votes
3answers
221 views
Neat long integer representation in python
I am programming simple RSA decryption routine in Python (I am a bit new to Python) and can't seem to find a way to neatly format long integer in my code.
The integer is 2048 bit long and if written ...
0
votes
1answer
493 views
How to make Botan RSA signature verification match that of PyCrypto
I'm developing a key generator that generates RSA signatures that
are to be downloaded to the clients computer.
In the clients computer i would like to use a RSA signature and a
public key to ...
5
votes
3answers
478 views
Implementing full RSA in Python
I am currently working on a project using python to implement p2p communication between two (or more) computers. Although I am pretty proficient with python, I am by no means an expert; programming ...
2
votes
1answer
404 views
Bad base64 Decode - M2Crypto - Python - Android - RSA
Trying to implement the signature verification of inapp billing on my server (Django/Python).
I found this great topic but I'm having issues with this line:
rsa = RSA.load_pub_key_bio(bio)
If I do ...
0
votes
0answers
515 views
Decoding RSA data with PyCrypto with given modulus/exponents
I'm porting a native (Win32, made in Delphi 5 with TP LockBox 2) app to Google App Engine and i'm currently struggling to get past RSA encryption/decryption. I have the Modulus and both exponents as a ...
1
vote
2answers
636 views
RSA PKCS #1 v1.5 Signature gives extra octet in Python compared to openssl
I want to sign a message according to the RSA-SHA1 Signature Method in OAuth 1 RFC Section http://tools.ietf.org/html/rfc5849#section-3.4.3 using Python. I'm trying to verify that I am on the right ...
1
vote
3answers
525 views
programmatically generate `d` from `p` and `q` (RSA)
I have two numbers, p, and q. I know that I can get phi = (p-1)*(q-1) and that ed = 1 (mod phi)... but I'm not sure I get what this means.
I wrote some Python:
p = NUM
q = NUM
e = NUM
phi = ...
2
votes
1answer
486 views
RSA encryption routines for Google App Engine Python
Hey, I'm trying to generate a signed url in python. Basically, I'm trying to access protected Amazon Cloudfront content from a Google App Engine server. Amazon has provided me with a pem file that has ...
1
vote
0answers
381 views
Verifying Digital Signature on Google App Engine
I'm using GAE (python) and have to verify a digital signature using a public key (pem format)
I cant use M2Crypto (its not supported on GAE) and neither the following code is working:
pubKey = pem
...
-1
votes
1answer
339 views
Recovering encrypted word using dictonary in python
I'm trying to recover an RSA encrypted 5 character word using a forward search dictionary attack in Python but having difficulty. The word was encrypted in 2 24 bit blocks (3648141 5604637) padding ...
0
votes
1answer
221 views
How to use Python gdata.tlslite.utils.ASN1Parser to get exponent and modulus?
What I am trying to do is read some PEM public keys using Python GAE.
the RSAKey module does not parse PEM formatted public keys, just private.
If I can get the modulus and exponent from the PEM, I ...
1
vote
1answer
181 views
Does M2Crypto's public_decrypt(block, padarg) perform decryption or verfication?
I got some Python code that seems to use a public key for decrypting data. The data is probably encrypted using the corresponding private key. (I am not sure about it, because encryption with ...
2
votes
1answer
3k views
RSA Encryption using Python
I'm trying to RSA encrypt a word 2 characters at a time padding with a space using Python but not sure how I go about it.
For example if the encryption exponent was 8 and a modulus of 37329 and the ...
2
votes
1answer
370 views
How to store RSA encrypted data to postgresql by using pycrypto?
I want to use Public/Private key to secure my UserInfo data. I'm new with PyCrypto and PostgreSQL.
I have some items to clarify:
Are Public Key and Private Key constant values?
If it is constant, ...
0
votes
0answers
785 views
How to decrypt on Unix data encrypted on Windows with a certificate?
I have data encrypted on Windows with a PFX certificate, using C# EnvelopedCms.
I need to decrypt the data on Unix, e.g. using openssl or Python M2Crypto.X509.
First I convert the cert from PFX to ...
4
votes
1answer
1k views
How add/change password for RSA priv key using PyCrypto
maybe somebody be able to help me.
I'm using PyCrypto to generate a pair of RSA keys. The public key and
private key.
I try to add/change a password to the private key, and I do not know how to
do it.
...