From 544969ce9763fca56fa05d3d924e6697428a4217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Fri, 7 Sep 2018 11:59:00 +0200 Subject: [PATCH] Remove dead code --- twofish/primitives.ml | 2 -- 1 file changed, 2 deletions(-) diff --git a/twofish/primitives.ml b/twofish/primitives.ml index 25292aa..c6ed5c3 100644 --- a/twofish/primitives.ml +++ b/twofish/primitives.ml @@ -24,11 +24,9 @@ open Bin let ( << ) x y = left32 x y ;; let ( >> ) x y = right32 x y ;; -let ( & ) x y = and32 x y ;; (* ^ is more useful as a 32-bit XOR than it is as a string-concat *) let ( ^^ ) = ( ^ ) ;; -let ( ^ ) x y = xor32 x y ;; type ctx = { k : Int32.t array;