aboutsummaryrefslogtreecommitdiff
path: root/src/BTLS/ConstantTimeEquals.chs
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-08-02 17:26:23 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-08-02 17:26:23 -0400
commit786d272fdf723987e582da16e511f067abf671a5 (patch)
tree2ffb65b72a5b6c44fdc85cf937f13331dbc49e4c /src/BTLS/ConstantTimeEquals.chs
parent44a6b5738f73b5281c3630c507aeece75e6ee952 (diff)
Move BTLS.ConstantTimeEquals into the BTLS.BoringSSL hierarchy
It’s a direct wrapper around a BoringSSL function, so it really belongs there.
Diffstat (limited to 'src/BTLS/ConstantTimeEquals.chs')
-rw-r--r--src/BTLS/ConstantTimeEquals.chs30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/BTLS/ConstantTimeEquals.chs b/src/BTLS/ConstantTimeEquals.chs
deleted file mode 100644
index 77b1af0..0000000
--- a/src/BTLS/ConstantTimeEquals.chs
+++ /dev/null
@@ -1,30 +0,0 @@
--- Copyright 2018 Google LLC
---
--- Licensed under the Apache License, Version 2.0 (the "License"); you may not
--- use this file except in compliance with the License. You may obtain a copy of
--- the License at
---
--- https://www.apache.org/licenses/LICENSE-2.0
---
--- Unless required by applicable law or agreed to in writing, software
--- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
--- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
--- License for the specific language governing permissions and limitations under
--- the License.
-
-module BTLS.ConstantTimeEquals where
-
-import Foreign (Ptr)
-import Foreign.C.Types
-
-import BTLS.Cast (asVoidPtr)
-
-#include <openssl/mem.h>
-
--- | Directly compares two buffers for equality. This operation takes an amount
--- of time dependent on the specified size but independent of either buffer's
--- contents.
-constantTimeEquals :: Ptr a -> Ptr a -> Int -> IO Bool
-constantTimeEquals a b size =
- let size' = fromIntegral size :: CULong in
- (== 0) <$> {#call CRYPTO_memcmp as ^#} (asVoidPtr a) (asVoidPtr b) size'