Hacker News new | ask | show | jobs
Show HN: Implement BLAKE3 with Awk (github.com)
2 points by chirsz 294 days ago
1 comments

    function xor(x, y) {
        return (x + y - 2 \* and(x, y));
    }
TIL!