From 2a93cf52e5386eb1b3586565af6a06ade4d32a66 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 13 Jul 2025 03:29:04 -0400 Subject: kernel: Move crypto specifics to sys/crypto/* Signed-off-by: Ian Moffett --- sys/include/dev/random/siphash.h | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 sys/include/dev/random/siphash.h (limited to 'sys/include/dev/random/siphash.h') diff --git a/sys/include/dev/random/siphash.h b/sys/include/dev/random/siphash.h deleted file mode 100644 index ecabb4a..0000000 --- a/sys/include/dev/random/siphash.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - Copyright (c) 2013 Marek Majkowski - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - - Original location: - https://github.com/majek/csiphash/ - - Solution inspired by code from: - Samuel Neves (supercop/crypto_auth/siphash24/little) - djb (supercop/crypto_auth/siphash24/little2) - Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c) -*/ - -#include - -uint64_t siphash24(const void *src, unsigned long src_sz, const char k[16]); -- cgit v1.2.3