diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /security/nss/lib/freebl/blapii.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'security/nss/lib/freebl/blapii.h')
-rw-r--r-- | security/nss/lib/freebl/blapii.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/security/nss/lib/freebl/blapii.h b/security/nss/lib/freebl/blapii.h new file mode 100644 index 000000000..6ad2e2892 --- /dev/null +++ b/security/nss/lib/freebl/blapii.h @@ -0,0 +1,61 @@ +/* + * blapii.h - private data structures and prototypes for the freebl library + * + * 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/. */ + +#ifndef _BLAPII_H_ +#define _BLAPII_H_ + +#include "blapit.h" + +/* max block size of supported block ciphers */ +#define MAX_BLOCK_SIZE 16 + +typedef SECStatus (*freeblCipherFunc)(void *cx, unsigned char *output, + unsigned int *outputLen, unsigned int maxOutputLen, + const unsigned char *input, unsigned int inputLen, + unsigned int blocksize); +typedef void (*freeblDestroyFunc)(void *cx, PRBool freeit); + +SEC_BEGIN_PROTOS + +SECStatus BL_FIPSEntryOK(PRBool freeblOnly); +PRBool BL_POSTRan(PRBool freeblOnly); + +#if defined(XP_UNIX) && !defined(NO_FORK_CHECK) + +extern PRBool bl_parentForkedAfterC_Initialize; + +#define SKIP_AFTER_FORK(x) \ + if (!bl_parentForkedAfterC_Initialize) \ + x + +#else + +#define SKIP_AFTER_FORK(x) x + +#endif + +SEC_END_PROTOS + +#if defined(NSS_X86_OR_X64) +#define HAVE_UNALIGNED_ACCESS 1 +#endif + +#if defined(__clang__) +#define HAVE_NO_SANITIZE_ATTR __has_attribute(no_sanitize) +#else +#define HAVE_NO_SANITIZE_ATTR 0 +#endif + +#if defined(HAVE_UNALIGNED_ACCESS) && HAVE_NO_SANITIZE_ATTR +#define NO_SANITIZE_ALIGNMENT __attribute__((no_sanitize("alignment"))) +#else +#define NO_SANITIZE_ALIGNMENT +#endif + +#undef HAVE_NO_SANITIZE_ATTR + +#endif /* _BLAPII_H_ */ |