This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import argparse | |
from Crypto.Cipher import AES | |
def milenage(k_i: str, op: str) -> str: | |
k_i = bytes.fromhex(k_i) | |
op = bytes.fromhex(op) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::io; | |
use trees::Tree; | |
fn main() { | |
let mut diag_tree = Tree::new(-1); | |
loop { | |
let mut buf = String::new(); | |
match io::stdin().read_line(&mut buf) { |