ci: fix `./v check-md -hide-warnings .`

Delyan Angelov 2022-04-15 21:08:09 +03:00 committed by Jef Roosens
parent 9a2e29a898
commit aef5b1a05c
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 2 additions and 2 deletions

View File

@ -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)