os

An operating system
git clone https://erai.gay/code/os/
Log | Files | Refs | README | LICENSE

aes_test.om (176B)


      1 func main(argc: int, argv: **byte, envp: **byte) {
      2 	var key: *byte;
      3 	var w: *byte;
      4 	var cipher: *byte;
      5 	var plain: *byte;
      6 	aes_expand(w, key);
      7 	aes_cipher(cipher, plain, w);
      8 }