ci: fix `./v check-md -hide-warnings .`
parent
9a2e29a898
commit
aef5b1a05c
|
@ -31,12 +31,12 @@ fn main() {
|
|||
cipher := aes.new_cipher(key)
|
||||
|
||||
println('performing encryption')
|
||||
mut encrypted := []byte{len: aes.block_size}
|
||||
mut encrypted := []u8{len: aes.block_size}
|
||||
cipher.encrypt(mut encrypted, data)
|
||||
println(encrypted)
|
||||
|
||||
println('performing decryption')
|
||||
mut decrypted := []byte{len: aes.block_size}
|
||||
mut decrypted := []u8{len: aes.block_size}
|
||||
cipher.decrypt(mut decrypted, encrypted)
|
||||
println(decrypted)
|
||||
|
||||
|
|
Loading…
Reference in New Issue