Tagged Questions
13
votes
5answers
11k views
What (pure) Python library to use for AES 256 encryption?
I am looking for a (preferably pure) python library to do AES 256 encryption and decryption.
This library should support the CBC cipher mode and use PKCS7 padding according to the answer to an ...
11
votes
6answers
2k views
what is the best/easiest to use encryption library in python
I want to encrypt few files using python what is the best way
i can use gpg but are there any standarad/famous python libraries?
10
votes
6answers
7k views
How to do PGP in Python (generate keys, encrypt/decrypt)
I'm making a program in Python to be distributed to windows users via an installer.
The program needs to be able to download a file every day encrypted with the user's public key and then decrypt it.
...
8
votes
2answers
1k views
Python's safest method to store and retrieve passwords from a database
Looking to store usernames and passwords in a database, and am wondering what the safest way to do so is. I know I have to use a salt somewhere, but am not sure how to generate it securely or how to ...
6
votes
2answers
313 views
How can I use bcrypt/scrypt on appengine for Python?
I want make an authentication system for my app along the lines of SUAS, except instead of using SHA256 for hashing passwords I'd like to use bcrypt or scrypt. Unfortunately both py-bcrypt and scrypt ...
6
votes
1answer
400 views
Strategies for Encryption with Django + Postgres?
I'm going to be storing a few sensitive pieces of information (SSN, Bank Accounts, etc) so they'll obviously need to be encrypted. What strategies do you recommend?
Should I do all the ...
6
votes
2answers
148 views
File encryption with Python
Is there a way to encrypt files (.zip, .doc, .exe, ... any type of file) with Python?
I've looked at a bunch of crypto libraries for Python including pycrypto and ezpycrypto but as far as I see they ...
6
votes
6answers
728 views
UDP security and identifying incoming data
I have been creating an application using UDP for transmitting and receiving information. The problem I am running into is security. Right now I am using the IP/socketid in determining what data ...
5
votes
4answers
138 views
I need to securely store a username and password in Python, what are my options?
I'm writing a small Python script which will periodically pull information from a 3rd party service using a username and password combo. I don't need to create something that is 100% bulletproof (does ...
5
votes
1answer
205 views
PyAudio Over Network crashes
Hello I am facing an issue with PyAudio I can not solve. When I use it over the network (after a while) it crashes. The error I get is
Exception in thread Thread-1:
Traceback (most recent call ...
5
votes
7answers
371 views
Encrypt text using a number
Project Euler
I have recently begun to solve some of the Project Euler riddles. I found the discussion forum in the site a bit frustrating (most of the discussions are closed and poorly-threaded), So ...
5
votes
3answers
1k views
How To Reversibly Store Password With Python On Linux?
First, my question is not about password hashing, but password encryption. I'm building a desktop application that needs to authentificate the user to a third party service. To speed up the login ...
5
votes
5answers
1k views
Obfuscate strings in Python
I have a password string that must be passed to a method. Everything works fine but I don't feel comfortable storing the password in clear text. Is there a way to obfuscate the string or to truly ...
4
votes
1answer
132 views
Encrypting passwords on POST Django
aside from using SSL, is there any way to encrypt a password in the Django framework on the first POST to the server? For example, if I have a form that accepts a username and password, then send it ...
4
votes
1answer
411 views
Encrpyt / decrypt data in python with salt
I'd like to know basically how can I encrypt data with a generated salt key and then decrypt it using python ?
i've gone trough a lot of websites and modules, and they all look great at encrpytion ...
4
votes
3answers
770 views
A good way to encrypt database fields? - Django
I've been asked to encrypt various db fields within the db.
Problem is that these fields need be decrypted after being read.
I'm using Django and SQL Server 2005.
Any good ideas?
4
votes
3answers
227 views
using a key to rearrange string
Using Python I want to randomly rearrange sections of a string based on a given key. I also want to restore the original string with the same key:
def rearrange(key, data):
pass
def restore(key, ...
4
votes
1answer
746 views
django, python and link encryption
Hello
I need to arrange some kind of encrpytion for generating user specific links. Users will be clicking this link and at some other view, related link with the crypted string will be decrypted and ...
4
votes
3answers
218 views
Verify source of HTTP request
I've got two systems that need to talk. The systems are setup likeso:
System A, running Django (Python 2.5) on Google App Engine (GAE)
System B, running Django (Python 2.6) on Ubuntu/Linux over ...
4
votes
2answers
227 views
Basics of string based protocol security
I wasn't sure how to phrase this question, so apologies in advance if it's a duplicate of something else.
I wanted to sanity check how I've secured my twisted based application and think I've done a ...
4
votes
3answers
658 views
Using DPAPI with Python?
Is there a way to use the DPAPI (Data Protection Application Programming Interface) on Windows XP with Python?
I would prefer to use an existing module if there is one that can do it. Unfortunately ...
4
votes
7answers
1k views
What symmetric cypher to use for encrypting messages?
I haven't a clue about encryption at all. But I need it. How?
Say you have a system of nodes communicating with each other on a network via asynchronous messages. The nodes do not maintain session ...
3
votes
1answer
429 views
Decrypting strings in Python that were encrypted with MCRYPT_RIJNDAEL_256 in PHP
I have a function in PHP that encrypts text as follows:
function encrypt($text)
{
$Key = "MyKey";
return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $Key, $text, MCRYPT_MODE_ECB, ...
3
votes
1answer
78 views
Real Security in Python
I've been looking for a way to use a password in an if statement. Obviously, if theRawInput == theCorrectPassword: is extremely non-secure. Any ideas? I've seen other questions with this topic, but ...
3
votes
2answers
249 views
Django SECRET_KEY
What exactly is the point of the SECRET_KEY in django? I did a few google searches and checked out the docs ( https://docs.djangoproject.com/en/dev/ref/settings/#secret-key ), but I was looking for a ...
3
votes
2answers
132 views
Easy to use Python encryption library/wrapper?
I want to encrypt an arbitrary-length string with a password in Python. I would prefer not to deal with padding, key generation and IVs as I honestly don't know that much about cryptography yet and ...
3
votes
3answers
88 views
Improve my Shared Secret Algorithm/Methodology & suggest a Encryption Protocol
I am looking for protocol/algorithm that will allow me to use a shared secret between my App & a HTML page.
The shared secret is designed to ensure only people who have the app can access the ...
3
votes
3answers
104 views
Python: Is there a good way to check if text is encrypted?
I've been playing around with cryptocat, which is an interesting online chat service that allows you to encrypt your messages with a key, so that only people with the same key can read your message. ...
3
votes
2answers
135 views
Bit-operations on large number of bytes
Doing some exercises with simple file encryption/decryption and am currently just reading in a bunch of bytes and performing the appropriate bit-operations on each byte one at a time, then writing ...
3
votes
1answer
316 views
Encrypting a file with RSA in Python
I'm implementing file encryption with RSA, using PyCrypto.
I know it's somewhat wrong, first of all because RSA is very slow and second because PyCrypto RSA can only encrypt 128 characters, so you ...
3
votes
3answers
391 views
AES encryption of files with Python
I am looking to implement a simple project that backs up files and encrypts them using AES.
The normal backing up part is done thanks to how Python handles everything ... however I need to encrypt ...
3
votes
2answers
764 views
Is this string Base64? How can I tell what is the encoding used?
This is a puzzle to me and I am really annoyed that I cannot solve it! So, if anyone has some free time I would like to here some suggestions on how to solve it!
I use a software that stores the ...
3
votes
3answers
1k views
Reversible hash function?
I need a reversible hash function (obviously the input will be much smaller in size than the output) that maps the input to the output in a random-looking way. Basically, I want a way to transform a ...
3
votes
2answers
1k views
Django urlsafe base64 decoding with decryption
I'm writing my own captcha system for user registration. So I need to create a suitable URL for receiving generated captcha pictures. Generation looks like this:
_cipher = ...
3
votes
2answers
233 views
How to add a padding to the data to make it acceptable for AES256 encryption algorithm in pycrypto library
Can someone tell me how to add a padding to the data to make it acceptable for AES256 encryption algorithm in pycrypto library (Python).
Thanks a lot in advance.. :)
3
votes
3answers
1k views
python+encryption: Encrypting session key using public key
I want to encrypt the session key using the public key. How does the PGP software do this?
Can somebody specify the procedure or function of encryption in Python?
3
votes
2answers
845 views
Python and PGP/encryption
i want to make a function using python to encrypt password by the public key.
at the user end i need to install PGP software which will generate the key pair .i want to use public key only for ...
3
votes
4answers
2k views
What is the most secure python “password” encryption
I am making a little webgame that has tasks and solutions, the solutions are solved by entering a code given to user after completion of a task. To have some security (against cheating) i dont want to ...
3
votes
3answers
1k views
What's a good two-way encryption library implemented in Python?
The authentication system for an application we're using right now uses a two-way hash that's basically little more than a glorified caesar cypher. Without going into too much detail about what's ...
3
votes
6answers
858 views
What's the most pythonic way of access C libraries - for example, OpenSSL?
I need to access the crypto functions of OpenSSL to encode Blowfish data in a CBC streams. I've googled and found some Blowfish libraries (hand written) and some OpenSSL wrappers (none of the seem ...
2
votes
1answer
142 views
AES Encryption in Google App Engine (Python) and Decryption on iOS (Objective-C)
I'm trying to encrypt some data from python (Google App Engine) and then decrypt it on iOS.
There are several issues surrounding this based on the fact that there are so many options with AES ...
2
votes
4answers
102 views
Secure communication between servers
I'm writing a simple control panel. It's going to be hosted on a single server, which communicates with other servers to do whatever it needs to. I need suggestions on how to do this securely, both ...
2
votes
1answer
54 views
Finding a specific Window using its title hashed value
I've been decompiling a piece of code I believe is malware and I'm trying to figure out what it does. It searches for a specific window title and uses the name of that window to decode the rest of its ...
2
votes
1answer
181 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
3answers
85 views
Pythonic solution to cryptographic agility that avoids violating Liskov's substitution principle
I need to write a set of wrappers in python around symmetric ciphers (AES,DES, etc) in various modes of operation that allow for crypto agility. Specifically, the code that is calling the wrappers ...
2
votes
1answer
120 views
Convert SHA256 hash string to SHA256 hash object in Python
I have a string which is a SHA256 hash, and I want to pass it to a Python script which will convert it to a SHA256 object. If I do this:
my_hashed_string = // my hashed string here
m = ...
2
votes
2answers
135 views
AES implementation on Python, Windows
I've experienced some trouble encrypting and decrypting data between the server and client application I'm developing. I'm using AES implementation using a script that can be downloaded here at ...
2
votes
1answer
251 views
RSA encryption in python
i decided to write a simple rsa encryption implementation in Python, but every time I run it it prints the error IndexError: list out of range when it's decrypting and in find_key
here's the error
...
2
votes
3answers
239 views
XOR ciphering works *most* of the time
I've been tasked with password-protecting a Java app with minimal concern for real security. So it seemed sensible to store username/password pairs in a text file and then encrypt it. For the ...
2
votes
1answer
197 views
Convert C# decryption to Python PyDes
I'm having trouble converting code from C# to Python. Over at Martijn's C# Blog is an excellent program for encrypt/decrypt [enclosed below] but I can't get it to convert directly to the python ...