1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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

This commit is contained in:
Delyan Angelov 2022-04-15 21:08:09 +03:00
parent 840f474fb5
commit 375361b787
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

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)