Tagged Questions
The stream-cipher tag has no wiki summary.
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. ...
2
votes
5answers
556 views
Software tools to automatically decrypt a file, whose encryption algorithm (and/or encryption keys) isn't known?
I have an idea for encryption that I could program fairly easily to encrypt some local text file.
Given that my approach is novel, and does not use any of the industry standard encryption techniques, ...
2
votes
6answers
1k views
C Symmetric Stream Cipher
Does anyone have a good implementation of a stream cipher written in pure portable C? I am not terribly concerned with the strength of the cipher at this point in time because it is only for a proof ...
1
vote
4answers
584 views
AES-CTR mode (streaming-like encryption) a 1 bit change in plaintext changes 1 bit in ciphertext?
From what I understand, in stream-cipher (or AES CTR mode) the key is actually being encrypted using the IV (or in general, from key K we produce a pseudo-random bytes). Than, we use this key to ...
1
vote
2answers
158 views
Is authentication required/recommended with a stream cipher?
I want to secure the communication of a TCP-based program using a shared passphrase/key. The easiest way to do that without having to deal with block size, padding, ... is to directly use a stream ...
0
votes
3answers
93 views
After encryption, an exe file becomes non-executable
After writing a basic LFSR-based stream cipher encryption module in C, I tried it on usual text files, and then on a .exe file in Windows. However, after decrypting it back the file is not running, ...