cipher.ha (255B)
1 // SPDX-License-Identifier: MPL-2.0 2 // (c) Hare authors <https://harelang.org> 3 4 // Discards any state associated with a block or a stream cipher algorithm, 5 // securely erasing secret data from memory. 6 export fn finish(a: *block) void = { 7 a.finish(a); 8 };