I hereby claim:
- I am blurbdust on github.
- I am blurbdust (https://keybase.io/blurbdust) on keybase.
- I have a public key whose fingerprint is 8260 87AF 5C66 53F0 BAAC A1C5 E4CE 747D EA55 8A13
To claim this, I am signing this object:
#-*- coding: utf8 -*- | |
#!/usr/bin/env python3 | |
#Initial permute matrix for the datas | |
PI = [58, 50, 42, 34, 26, 18, 10, 2, | |
60, 52, 44, 36, 28, 20, 12, 4, | |
62, 54, 46, 38, 30, 22, 14, 6, | |
64, 56, 48, 40, 32, 24, 16, 8, | |
57, 49, 41, 33, 25, 17, 9, 1, | |
59, 51, 43, 35, 27, 19, 11, 3, |
#!/usr/bin/env python3 | |
class Salsa: | |
def __init__(self,r): | |
assert r >= 0 | |
self._r = r # number of rounds | |
self._mask = 0xffffffff # 32-bit mask | |
def __call__(self,key=[0]*32,nonce=[0]*8,block_counter=[0]*8): | |
#print(len(key)) | |
assert len(key) == 32 |
#!/usr/bin/env python3 | |
import subprocess | |
rotors = [['VZBRGITYUPSDNHLXAWMJQOFECK'], | |
['AJDKSIRUXBLHWTMCQGZNPYFVOE'], | |
['ESOVPZJAYQUIRHXLNFTGKDCMWB']] | |
original_rotors = rotors | |
charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
use std::env; | |
fn main() -> std::io::Result<()>{ | |
let together = "Good morning ".to_owned(); | |
print!("{}", together); | |
match env::var("USER") { | |
Ok(val) => print!("{}", val), | |
Err(e) => print!("err: {}", e), |
KERNEL=/home/$USER/linux | |
RELEASE=stretch | |
IMAGE=/home/$USER/$RELEASE # match the create-image.sh script if you change the dist | |
sudo apt-get update && sudo apt-get install build-essential debootstrap qemu-system-x86 | |
git clone https://github.com/torvalds/linux.git $HOME/linux | |
cd $HOME/linux |
I hereby claim:
To claim this, I am signing this object: