Skip to content

Commit

Permalink
ci: fix ./v check-md -hide-warnings .
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Apr 15, 2022
1 parent 840f474 commit 375361b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/crypto/README.md
Expand Up @@ -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)
Expand Down

0 comments on commit 375361b

Please sign in to comment.