SKDP: Symmetric Key Distribution Protocol 1.1.0.0 (A1)
Encrypted tunneling protocol using pre-shared keys
common.h
1/* 2025 Quantum Resistant Cryptographic Solutions Corporation
2 * All Rights Reserved.
3 *
4 * NOTICE: This software and all accompanying materials are the exclusive
5 * property of Quantum Resistant Cryptographic Solutions Corporation (QRCS).
6 * The intellectual and technical concepts contained within this implementation
7 * are proprietary to QRCS and its authorized licensors and are protected under
8 * applicable U.S. and international copyright, patent, and trade secret laws.
9 *
10 * CRYPTOGRAPHIC STANDARDS:
11 * - This software includes implementations of cryptographic algorithms such as
12 * SHA3, AES, and others. These algorithms are public domain or standardized
13 * by organizations such as NIST and are NOT the property of QRCS.
14 * - However, all source code, optimizations, and implementations in this library
15 * are original works of QRCS and are protected under this license.
16 *
17 * RESTRICTIONS:
18 * - Redistribution, modification, or unauthorized distribution of this software,
19 * in whole or in part, is strictly prohibited.
20 * - This software is provided for non-commercial, educational, and research
21 * purposes only. Commercial use in any form is expressly forbidden.
22 * - Licensing and authorized distribution are solely at the discretion of QRCS.
23 * - Any use of this software implies acceptance of these restrictions.
24 *
25 * DISCLAIMER:
26 * This software is provided "as is," without warranty of any kind, express or
27 * implied, including but not limited to warranties of merchantability or fitness
28 * for a particular purpose. QRCS disclaims all liability for any direct, indirect,
29 * incidental, or consequential damages resulting from the use or misuse of this software.
30 *
31 * FULL LICENSE:
32 * This software is subject to the **Quantum Resistant Cryptographic Solutions
33 * Proprietary License (QRCS-PL)**. The complete license terms are included
34 * in the LICENSE.txt file distributed with this software.
35 *
36 * Written by: John G. Underhill
37 * Contact: john.underhill@protonmail.com
38 */
39
40#ifndef SKDP_COMMON_H
41#define SKDP_COMMON_H
42
43#include <assert.h>
44#include <errno.h>
45#include <stdbool.h>
46#include <stdint.h>
47#include <limits.h>
48#include <string.h>
49#include "../../QSC/QSC/common.h"
50
57
62#if defined(_DLL)
63# define SKDP_DLL_API
64#endif
69#if defined(SKDP_DLL_API)
70# if defined(QSC_SYSTEM_COMPILER_MSC)
71# if defined(QSC_DLL_IMPORT)
72# define SKDP_EXPORT_API __declspec(dllimport)
73# else
74# define SKDP_EXPORT_API __declspec(dllexport)
75# endif
76# elif defined(QSC_SYSTEM_COMPILER_GCC)
77# if defined(QSC_DLL_IMPORT)
78# define SKDP_EXPORT_API __attribute__((dllimport))
79# else
80# define SKDP_EXPORT_API __attribute__((dllexport))
81# endif
82# else
83# if defined(__SUNPRO_C)
84# if !defined(__GNU_C__)
85# define SKDP_EXPORT_API __attribute__ (visibility(__global))
86# else
87# define SKDP_EXPORT_API __attribute__ __global
88# endif
89# elif defined(_MSG_VER)
90# define SKDP_EXPORT_API extern __declspec(dllexport)
91# else
92# define SKDP_EXPORT_API __attribute__ ((visibility ("default")))
93# endif
94# endif
95#else
96# define SKDP_EXPORT_API
97#endif
98
99#endif