PyCrypto - The Python Cryptography Toolkit is a package that contains various cryptographic modules for the Python programming language.

learn more… | top users | synonyms

0
votes
1answer
46 views

How to install the pycrypto module for a definite python version

I'm trying to install "Userful MultiSeat-X64-5.0.1 ..." in Ubuntu 13.04 x64, and encountered the following error at the end of the installation: File "<string>", line 6, in <module> ...
1
vote
0answers
34 views

Incompatible libgmp.a error when building Pycrypto 2.6

I have build the gmp 5.1.1 library using gcc 4.7.2 all in the Windows-7 environment. I configured the build with ./configure and commanded the make and after finished the make check without any ...
1
vote
0answers
67 views

Add salt to pycrypto KDF - useful? [closed]

I have noted some sources indicate that when using a KDF like PBKDF2 some advocate injecting the salt at the time of execution - like this: dv = salt + PBKDF2(salt + password, salt) Versus the ...
2
votes
1answer
53 views

First 8 byes of my encrypted data corrupting using 3DES and CBC

I'm using PyCrypto in an application to encrypt data, but for some reason the first 8 bytes (corresponding to the first block) are coming through corrupt no matter what I do. >>> from ...
0
votes
0answers
30 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
0answers
38 views

pycrypto install mac requirements

I have OS 10.6.8 (still), and not much else installed except for Python 3.3.1 (with IDLE). Is there a simple list of requirements (i.e., other software to be installed first) in preparation for ...
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() ...
1
vote
1answer
41 views

How can you store a rsa key pair in a django model / sqlite db

i am using PyCrypto within Django (Python 2.7, Django 1.5m SQLite), i would like to create a field to store an RSAkey object. How can i do this? Converting to a string and back seems pretty error ...
1
vote
1answer
141 views

Decrypting data in Python that was encrypted in 3DES by Java

I'm trying to decrypt data using PyCrypto. The data was encoded in Java with the javax.crypto package. The encryption is Triple DES (referred to as "DESede" in Java). As far as I can tell, default ...
0
votes
0answers
41 views

Keys generated via pycrypto prompting for password

I generated public/private keypairs using a simple function: def _generate_rsa_key_pair(size=2048): rng = Random.new().read rsa_key = RSA.generate(size, rng) public_key = ...
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
vote
3answers
304 views

Strange issue with AES CTR mode with Python and Javascript

I'm trying to decrypt a ciphertext created by CryptoJS using PyCrypto. I am using AES-256-CTR, with a 12-byte random prefix and 4-byte counter. So far, I've had limited success. Please read this ...
0
votes
0answers
48 views

pycrypto - AES Encrypted Server + Client ERROR - Incorrect Padding

I started out with a python reverse shell just simple client. Which worked fine but now i want to implement "Pycrypto" and create a Server to decrypt the commands from the remote client. I ...
1
vote
2answers
149 views

Python PyCrypto RSA Blind and Unblind

I am trying to perform blinding and unblinding on a hash. Following: https://gdata-python-client.googlecode.com/hg/pydocs/gdata.Crypto.PublicKey.RSA.html#RSAobj_c-unblind I have: messageHashed = ...
0
votes
3answers
121 views

Is AES-CTR in CryptoJS compatible with PyCrypto?

I'm trying to decrypt some AES-CTR-256 data using the PyCrypto library. The ciphertext was produced by the Cryptocat multiparty chat Javascript code, which relies on the CryptoJS library. The IV ...
0
votes
2answers
119 views

PyCrypto AES encryption not working as expected

I am creating a Python function to perform counter mode encryption using the PyCrypto module. I am aware of the builtin, but want to implement it myself. I'm trying Test Vector #1 from RFC 3686, and ...
3
votes
1answer
102 views

Encrypt/Decrypt an animated gif in Python without storing the final copy to HD

Okay, let's try this again. I'm trying to encrypt an animated gif with PyCrypto to be sent to someone. After the receiver gets it, they should be able to run my pycrypto script and view the animated ...
0
votes
1answer
100 views

openssl not decrypted files encrypted by pycrypto

i encrypt file in python: from Crypto.Cipher import AES from Crypto import Random key = Random.new().read(16) iv = Random.new().read(AES.block_size) encryptor = AES.new(key, AES.MODE_CBC, iv) with ...
0
votes
1answer
262 views

No handlers could be found for logger “paramiko.transport”

I am running some fabric tasks inside of flask. Flask is running inside of wsgi in apache. Once in a while I get this error in the apache logs: No handlers could be found for logger ...
1
vote
4answers
283 views

Pycrypto install fatal error: gmp.h file not found

It seems like there are a number of people who have had a similar problem, however, after much searching I haven't been able to find a solution that works with my particular architecture. I'm trying ...
2
votes
0answers
160 views

How do I create a user and set a password using ansible?

The documentation [1] refers us to the github example [2], but this is a bit sparse and mysterious. It says this: # created with: # crypt.crypt('This is my Password', '$1$SomeSalt') password: ...
-2
votes
1answer
83 views

Virtualenv PyCrypto cannot import Crypto modular

Python, Django 1.3.5 I am using virtualenv, sudo pip install PyCrypto==2.6, which succeed. But Django's error: Traceback (most recent call last): File ...
1
vote
2answers
325 views

HMAC-SHA256 with AES-256 in CBC mode

I recently came across the following code sample for encrypting a file with AES-256 CBC with a SHA-256 HMAC for authentication and validation: aes_key, hmac_key = self.keys # create a PKCS#7 pad to ...
0
votes
1answer
112 views

Key length issue: AES encryption on phpseclib and decryption on PyCrypto

I am working on a data intensive project where I have been using PHP for fetching data and encrypting it using phpseclib. A chunk of the data has been encrypted in AES with the ECB mode -- however the ...
1
vote
1answer
350 views

Using PyCrypto to decrypt Perl encrypted password

I'm trying to decrypt a pass phrase stored in a file. The encryption was done with the Perl::CBC module, but I need to decrypt it for a Python script. Frankly, I don't know much (or anything really) ...
1
vote
2answers
173 views

PyCrypto - How does the Initialization Vector work?

I'm trying to understand how PyCrypto works to use in a project but I'm not fully understanding the significance of the Initialization Vector (IV). I've found that I can use the wrong IV when ...
1
vote
1answer
138 views

Pycrypto AES-CTR implementation

I am new to python and pycrypto. I am trying to implement AES-CTR. To check my program for correct ciphering I tried to use test sequences from NIST SP 800-38A standard (section F.5). But I do not get ...
0
votes
1answer
135 views

Python log encryption with a public key using pycrypto

I'm developing a web app (using gevent, but that is not significant) that has to write some confidential information in log. The obvious idea is to encrypt the confidential information using a public ...
0
votes
1answer
179 views

Pass list to AES key generator in PyCrypto

I'm attempting to generate an AES key with Pycrypto but receive the following error: TypeError: 'list' does not support the buffer interface for the following statement: aescipher = ...
5
votes
1answer
115 views

Why does PyCrypto not use the default IV?

I am trying to figure out why my Python client and the Ruby server are having a disagreement about how to encrypt data. The only difference I see in the Ruby code and my code is that they are not ...
1
vote
1answer
155 views

Porting AES code from M2Crypto to pycrypto

I want to convert some existing AES code from M2Crypto to the equivalent pycrypto but the documentation is thin, especially for M2Crypto. I have reduced the relevant code to a gist. The main issues ...
0
votes
0answers
130 views

PyCrypto Installation Issues on OSX Mountain Lion using IDLE

I am new, and this is very probably a simple fix. I have used IDLE for a bit, and am trying to install PyCrypto so that I can import it into IDLE. I have used easy_install to install it in the ...
0
votes
2answers
654 views

Python Encrypting with PyCrypto AES

I just found pycrypto today, and I've been working on my AES encryption class. Unfortunately it only half-works. self.h.md5 outputs md5 hash in hex format, and is 32byte. This is the output. It seems ...
0
votes
0answers
70 views

PyCrypto not Working on Python 3.2

I have PyCrypto version 2.6 and I have read from the changelog that 2.4 or later version of PyCrypto Supports Python 3. I tried to install it using # python3 setup.py install But it gives me this ...
0
votes
1answer
257 views

On Mac OS X, easy_install fabric and/or easy_install pycrypto fails due to linker error “illegal text-relocation”

When trying to easy_installfabric (or easy_installpycrypto, which fabric depends on), I got the following linker error on Mac OS X: ld: illegal text-relocation to ___gmp_binvert_limb_table in ...
0
votes
1answer
475 views

Implement OpenSSL AES Encryption in Python

I'm trying to implement the following in Python: openssl enc -e -aes-256-cbc -base64 -k "Secret Passphrase" -in plaintext.txt -out ciphertext.txt openssl enc -d -aes-256-cbc -base64 -k "Secret ...
1
vote
1answer
124 views

Is my PyCrypto implementation secure for my purposes?

I'm not experienced with programming, and the PyCrypto documentation is pretty sparse for a beginner. Let's say that I encrypt a file with the code I have written below, and send it over the internet. ...
2
votes
2answers
387 views

PyCrypto install error on Windows

I am trying to install PyCrypto 2.6 Library on my computer. But I keep getting the following error D:\Software\Python\package\pycrypto-2.6>python setup.py build running build running build_py ...
1
vote
1answer
146 views

installing python packages StarCluster and pycrypto

Hi I am very new to python...so please forgive me if this is a silly question... Having installed python 2.7.3 i wanted to install the package StarCluster which i tried doing via the command: $ sudo ...
0
votes
1answer
285 views

fatal error: 'string.h' file not found after upgrading to python 3.2 and installing certain modules from a virtualenv

I'm on Mac OSX 10.8 (Mountain Lion) and have just installed Python 3.2.3. When installing pycrypto from a virtual environment using that version of python: $ virtualenv --no-site-packages -p ...
2
votes
1answer
4k views

getting “error: Unable to find vcvarsall.bat” then “RuntimeError: autoconf error” trying to install pycrypto on windows

After googling around, I found most answers say: install mingw, then use "setup.py install build --compiler=mingw32" to install. This is what I get: C:\Users\Joe\Desktop\pycrypto-2.6>setup.py ...
1
vote
2answers
103 views

compressed encrypted file is bigger then source

I created a encrypted file from a text file in python with beefish. beefish uses pycrypto. so my source text file is 33742 bytes and the encrypted version is 33752. thats ok so far but ... when I ...
1
vote
1answer
130 views

pycrypto develoment server error “from Crypto.Cipher import blockalgo”

I have installed pycrypto version 2.6 , and i am getting this error from Crypto.Cipher import blockalgo ImportError: cannot import name blockalgo I have read many post but i am unable to solve this ...
6
votes
4answers
679 views

How can I create an encrypted django field that converts data when it's retrieved from the database?

I have a custom EncryptedCharField, which I want to basically appear as a CharField when interfacing UI, but before storing/retrieving in the DB it encrypts/decrypts it. The custom fields ...
1
vote
1answer
208 views

linker command failed at fastmath installing pycrypto on OSX

I did pip install pycrypto (actually wanted to install fabric but it failed at pycrypto) and got the error below. I'm on python 2.7.3. Tried 3.3 too but same error. How do I fix this please? My clang ...
2
votes
1answer
952 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 ...
3
votes
1answer
391 views

GAE Python - PyCrypto - No module named winrandom

I am trying to get PyCrypto up and running on my App Engine (Python) Development Server. I installed PyCrypto using a Voidspace binary file (pycrypto-2.0.1.win-amd64-py2.6.exe). I am running Windows ...
0
votes
2answers
978 views

How AES in CTR works for Python with PyCrypto?

I am using python 2.7.1 I want to encrypt sth using AES in CTR mode. I installed PyCrypto library for python. I wrote the following code: secret = os.urandom(16) crypto = AES.new(os.urandom(32), ...
3
votes
1answer
2k views

AES decryption padding with PKCS5 Python

I have been trying to implement AES CBC decryption in Python. Since the ciphered text is not a multiple of 16bytes, padding was necessary. Without padding, this error surfaced "TypeError: Odd-length ...
7
votes
3answers
3k views

Encrypt & Decrypt using PyCrypto AES 256

I'm trying to build two functions using PyCrypto that would accept two parameters : the message and the key, and then encrypt/decrypt it. I found several link on the web to help me out, but each one ...

1 2 3 4