All Questions
Tagged with cryptography python-2.x
10 questions
9
votes
2
answers
4k
views
Data encryption with python
I am just trying to solve one of the puzzle which is explained below:
The sentence if man was meant to stay on the ground god would have
given us roots after ...
3
votes
0
answers
394
views
Python2.7 Some xor fun
After doing the Cryptopals challanges, which I found scrolling through codereview, and finally being able to solve set1 challenge 6. I decided to have a little xor fun, and make an automated xor ...
3
votes
2
answers
2k
views
Python image encryption security analysis
I'm currently seeking someone to review the source code for an image encryption program in Python 2.7. The code is complete and should run provided you have installed the correct packages. For this ...
4
votes
2
answers
225
views
File's encryption tool in terminal
I've created a wrapper for the SimpleCrypt library that allows to easily encrypt/decrypt a string.
The application is used this :
...
3
votes
1
answer
218
views
My images have secrets A.K.A. the making of aesthetic passwords V.2
This is my implementation of a prng steganography tool written in Python. You can also find the code on GitHub.
Steganography is the art of hiding messages in (images, videos or even audio)
I've ...
5
votes
1
answer
4k
views
A Simple Caesar Cipher in Python
I wrote an encryption/decryption algorithm for the Caesar Cipher. It works fine, but I'm curious if there are any constructive critiques, tips, tricks, comments, or advice anyone may have on how the ...
4
votes
2
answers
734
views
Generate a Bitcoin Address and the Wif from a phrase
Is there a way to speed up my Python code?
...
3
votes
2
answers
99
views
Finding a pair of words from two files with a particular MD5
I have two txt files. Both contain 60k+ words in a list. I put together some code to loop through each file and concatenate the strings
...
1
vote
1
answer
287
views
Passwords storage class
I'm writing a tool, to manage our application, specifically to store passwords in encrypted view. I made a class which is based on two posts:
https://stackoverflow.com/questions/20852664/python-...
1
vote
1
answer
425
views
Encryption via multiplication of hex-converted, multiplied ASCII values
The idea behind the encryption is that it stores the key within the final encrypted password. When the user inputs a password for the first time, they also have to pick an element from a list of ...