BLAKE3
BLAKE3 copied to clipboard
Implement BitXorAssign trait for Hash
There is currently no way to XOR two blake3::Hash
types without making extra allocations, because it is not possible to iterate mutably over a blake3::Hash
.
It is possible to work around it but I think it is a common enough use case for it to be implemented in the crate. I could take care of this if you believe it is worthwhile.