Cryptography Cryptanalysis of OCB2 |
- Cryptanalysis of OCB2
- HTML Static page password protection
- Identifying a cipher
- DarkCastle - community cipher collection
- Prove PRG using comparsion of D
Posted: 31 Oct 2018 06:08 PM PDT |
HTML Static page password protection Posted: 31 Oct 2018 07:19 PM PDT See link . The problem is once someone enters the password once, they can copy the hash from the url and just paste it as if they are entering the password. I know this is arbitrary seeing as the password could just as easily be spread around, but I was wondering if there was a way to fix this? Also anyone familiar with front end, if you have any other recommendations to improve the password protection, I would be interested in ideas. (Also what pitfalls you see). This is more for fun, so I am not too pressed about amazing security given how it is being set up. [link] [comments] |
Posted: 31 Oct 2018 02:47 PM PDT I've come across some code utilizing an unknown (to me) block cipher and am curious to see if anybody can identify it. My observations:
I'm thinking it's either Speck-64 or RC5 that's been heavily mangled by an optimizing compiler but the round operations don't match up. I don't know the implementation details of many algorithms so I'm probably missing something obvious. [link] [comments] |
DarkCastle - community cipher collection Posted: 31 Oct 2018 07:54 AM PDT I've been inspired to create a simple authenticated file encryption program using ciphers that I've invented. I'm currently looking for others who would like to contribute ciphers to the project to make a large collection of community made ciphers that can be used and tested with through one simple application. I've taken note of some community ciphers that may be included from this "break my cipher" thread https://www.reddit.com/r/crypto/comments/9kk5gl/break_my_ciphercollectionpost/ Any cipher that isn't already broken (and can operate on binary data) can be submitted. The cipher does not necessarily have to be written in C. It can be written in any language as long as there are test vectors included with the cipher or the cipher is easy to implement. The cipher does not need to be authenticated as authentication mechanisms are already baked in. Although, new authentication methods are welcome too. Who wants their cipher to be included? The ciphers currently available within the program were developed by myself. v0.1 source code https://github.com/pvial00/DarkCastle [link] [comments] |
Prove PRG using comparsion of D Posted: 31 Oct 2018 03:36 PM PDT 1.) G: {0,1}^(n/2) ->{0,1}^(n+1) is PRG. G': {0,1}^n ->{0,1}^(n+1) is defined as G'(s):=(s_1,...,s_(n/2)) for seed s:=(s_1,...,s_n) Prove that G' is also PRG using the argument that D for G' is also D for G. 2.) ¬G: {0,1}^n ->{0,1}^(n+1) is PRG. G'': {0,1}^(n/2) ->{0,1}^(n+1) defined as G''(s):=¬G(0^(n/2) * s) for seed s:=(s_1,...,s_(n/2)) Prove that ¬G is not a PRG using part 1.) [link] [comments] |
You are subscribed to email updates from Cryptography news and discussions. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment