Skip to content

Commit

Permalink
fallback: add missing xor function
Browse files Browse the repository at this point in the history
  • Loading branch information
bwesterb committed Jul 24, 2024
1 parent 271a9ce commit 7a469d2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fallback.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ func or(dst, a, b []byte) {
orGeneric(dst, a, b)
}

func xor(dst, a, b []byte) {
xorGeneric(dst, a, b)
}

func andNot(dst, a, b []byte) {
andNotGeneric(dst, a, b)
}
Expand Down

0 comments on commit 7a469d2

Please sign in to comment.