Fix `#encrypt_detached` for crystal 1.2.0

master
Caspian Baska 2021-10-20 15:06:17 +11:00
parent b90d9bf117
commit 971edade77
No known key found for this signature in database
GPG Key ID: 61496441785F1433
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ module Sodium::Cipher::Aead
# `src` and `dst` may be the same object but should not overlap.
# May supply `mac`, otherwise a new one is returned.
# May supply `additional`
def encrypt_detached(src : Bytes, dst : Bytes? = nil, nonce : Sodium::Nonce? = nil, *, mac : Bytes? = nil, additional : String | Bytes | Nil = nil) : {Bytes, Bytes, Sodium::Nonce}
def encrypt_detached(src : Bytes, dst : Bytes? = nil, *, nonce : Sodium::Nonce? = nil, mac : Bytes? = nil, additional : String | Bytes | Nil = nil) : {Bytes, Bytes, Sodium::Nonce}
dst ||= Bytes.new src.bytesize
nonce ||= Sodium::Nonce.random
mac ||= Bytes.new MAC_SIZE