diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-29 09:07:42 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-29 09:07:42 +0200 |
commit | aff03b0a67c41cf7af5df9c9eef715a8b27a2667 (patch) | |
tree | aa2909ae4718f81c83c8cfb68c1f5a23485b3173 /security/nss/lib/freebl/crypto_primitives.h | |
parent | bdb4ff581677ad1cd411b55a68c87534f9a64882 (diff) | |
parent | 11caf6ecb3cb8c84d2355a6c6e9580a290147e92 (diff) | |
download | UXP-aff03b0a67c41cf7af5df9c9eef715a8b27a2667.tar UXP-aff03b0a67c41cf7af5df9c9eef715a8b27a2667.tar.gz UXP-aff03b0a67c41cf7af5df9c9eef715a8b27a2667.tar.lz UXP-aff03b0a67c41cf7af5df9c9eef715a8b27a2667.tar.xz UXP-aff03b0a67c41cf7af5df9c9eef715a8b27a2667.zip |
Merge branch 'master' of https://github.com/MoonchildProductions/UXP into js_dom_performance-resource-timing_1
Diffstat (limited to 'security/nss/lib/freebl/crypto_primitives.h')
-rw-r--r-- | security/nss/lib/freebl/crypto_primitives.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/security/nss/lib/freebl/crypto_primitives.h b/security/nss/lib/freebl/crypto_primitives.h deleted file mode 100644 index f19601f4b..000000000 --- a/security/nss/lib/freebl/crypto_primitives.h +++ /dev/null @@ -1,51 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/* This file holds useful functions and macros for crypto code. */ - -#ifdef FREEBL_NO_DEPEND -#include "stubs.h" -#endif - -#include <stdlib.h> -#include "prtypes.h" - -/* Unfortunately this isn't always set when it should be. */ -#if defined(HAVE_LONG_LONG) - -/* - * ROTR64/ROTL64(x, n): rotate a 64-bit integer x by n bites to the right/left. - */ -#if defined(_MSC_VER) -#pragma intrinsic(_rotr64, _rotl64) -#define ROTR64(x, n) _rotr64((x), (n)) -#define ROTL64(x, n) _rotl64((x), (n)) -#else -#define ROTR64(x, n) (((x) >> (n)) | ((x) << (64 - (n)))) -#define ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n)))) -#endif - -/* - * FREEBL_HTONLL(x): swap bytes in a 64-bit integer. - */ -#if defined(_MSC_VER) - -#pragma intrinsic(_byteswap_uint64) -#define FREEBL_HTONLL(x) _byteswap_uint64(x) - -#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__x86_64)) - -PRUint64 swap8b(PRUint64 value); -#define FREEBL_HTONLL(x) swap8b(x) - -#else - -#define SHA_MASK16 0x0000FFFF0000FFFFULL -#define SHA_MASK8 0x00FF00FF00FF00FFULL -PRUint64 swap8b(PRUint64 x); -#define FREEBL_HTONLL(x) swap8b(x) - -#endif /* _MSC_VER */ - -#endif /* HAVE_LONG_LONG */
\ No newline at end of file |