chacha: Fix open docstring

This commit is contained in:
lukechampine 2019-11-06 20:39:41 -05:00
parent d6ca2323cf
commit d1a570a4b8
No known key found for this signature in database
GPG Key ID: A5C1CE074CBF1D60

View File

@ -469,7 +469,7 @@ pub fn chacha20poly1305Seal(dst: []u8, plaintext: []const u8, data: []const u8,
mac.final(dst[plaintext.len..]);
}
/// Verifies and decrypts an authenticated message produced by chacha20poly1305Open.
/// Verifies and decrypts an authenticated message produced by chacha20poly1305Seal.
pub fn chacha20poly1305Open(dst: []u8, ciphertext: []const u8, data: []const u8, key: [32]u8, nonce: [12]u8) !void {
if (ciphertext.len < chacha20poly1305_tag_size) {
return error.InvalidMessage;