hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

#cryptopals

0 posts0 participants0 posts today

Struggling with implementing AES for twice (because I got annoyed at bugs in my code and decided to instead start over using ARMv8 A64 cryptographic instructions like someone would do in a practical and secure modern implementation) has me appreciating AES enough to feel motivated to read most of the historical literature on S-box design and more broadly designing algorithms for avalanche effect

Incidentally the amplification of a small mistake is a lovely illustration of that

Yay. Finally implemented an auto drop function for my rust terminal window manager. It needs to do some termio things to disable echo and other things, which if the program crashes leaves the terminal rather unusable. 'stty echo' is a frequent command...

Or was. Now an assert can panic and the unwinding will restore the terminal state before exit.

A re-run of #cryptopals challenge 30, without a crash, but also no explicit terminal state restoration in code - it "just works".

Решение cryptopals. Часть 2

Продолжаем решать задания cryptopals . В этой части рассмотрим блоки заданий 3 и 4, которые посвящены блочному шифрованию, хеш-функциям и генераторам псевдослучайных чисел. Первая часть

habr.com/ru/articles/803077/

ХабрРешение cryptopals. Часть 2Продолжаем решать задания cryptopals . В этой части рассмотрим блоки заданий 3 и 4. Первая часть Вторая часть Блок 3: Block & stream crypto Темы: Блочные шифры, генераторы случайных чисел Ссылка:...

Решение cryptopals. Часть 1

Часто при изучении криптографии делают упор на теорию, оставляя практическую часть в стороне. Упражнения cryptopals — это прекрасный вариант подтянуть практические навыки. С одной стороны, начинать можно с минимумом предварительных знаний. С другой стороны, затронуты все важные темы на примере реальных атак. В этой части рассмотрим блоки заданий 1 и 2.

habr.com/ru/articles/801805/

ХабрРешение cryptopals. Часть 1Часто при изучении криптографии делают упор на теорию, оставляя практическую часть в стороне. Упражнения Matasano Crypto Challenges cryptopals — это прекрасный вариант подтянуть практические навыки. С...

Got excited this morning and started a new repo for cryptopals.com at codeberg.org/Taffer/cryptopals

Going to do Python and C, and try to get better at Go and Rust, and maybe finally learn Ruby.

Odds are I won’t have time to get far, but it’s the thought that counts, right?

Codeberg.orgcryptopalsI should really finish working through the cryptopals challenges. Also, I'm going to do it in several languages so I can learn and/or get better with them.

I think I have a funk-removal plan:

* finish the #Godot 3.x tutorials I bought; they're getting stale
* finish learning #Rust
* tackle #Cryptopals cryptopals.com/ using Rust; I've started twice before but always get distracted, maybe trying with a newly-learned language will keep me focused

Also, the usual stuff (#ffxiv, reading, work, family). Could still use 2-3 clones to divide things up...

cryptopals.comThe Cryptopals Crypto Challenges

set 1, challenge 8: I can guess if a ciphertext is AES ECB by looking for repeated blocks.

After breaking encryption of the previous challenges I’d like to break this one too, but I’m not sure where to start nor if it’s even feasible since I don’t have any plaintext/ciphertext pair