QSC Post Quantum Cryptographic Library 1.0.0.6c (A6)
A post quantum secure library written in Ansi C
 
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Loading...
Searching...
No Matches
queue.h
Go to the documentation of this file.
1/*
2 * 2025 Quantum Resistant Cryptographic Solutions Corporation
3 * All Rights Reserved.
4 *
5 * NOTICE: This software and all accompanying materials are the exclusive
6 * property of Quantum Resistant Cryptographic Solutions Corporation (QRCS).
7 * The intellectual and technical concepts contained within this implementation
8 * are proprietary to QRCS and its authorized licensors and are protected under
9 * applicable U.S. and international copyright, patent, and trade secret laws.
10 *
11 * CRYPTOGRAPHIC STANDARDS:
12 * - This software includes implementations of cryptographic algorithms such as
13 * SHA3, AES, and others. These algorithms are public domain or standardized
14 * by organizations such as NIST and are NOT the property of QRCS.
15 * - However, all source code, optimizations, and implementations in this library
16 * are original works of QRCS and are protected under this license.
17 *
18 * RESTRICTIONS:
19 * - Redistribution, modification, or unauthorized distribution of this software,
20 * in whole or in part, is strictly prohibited.
21 * - This software is provided for non-commercial, educational, and research
22 * purposes only. Commercial use in any form is expressly forbidden.
23 * - Licensing and authorized distribution are solely at the discretion of QRCS.
24 * - Any use of this software implies acceptance of these restrictions.
25 *
26 * DISCLAIMER:
27 * This software is provided "as is," without warranty of any kind, express or
28 * implied, including but not limited to warranties of merchantability or fitness
29 * for a particular purpose. QRCS disclaims all liability for any direct, indirect,
30 * incidental, or consequential damages resulting from the use or misuse of this software.
31 *
32 * FULL LICENSE:
33 * This software is subject to the **Quantum Resistant Cryptographic Solutions
34 * Proprietary License (QRCS-PL)**. The complete license terms are included
35 * in the LICENSE.txt file distributed with this software.
36 *
37 * Written by: John G. Underhill
38 * Contact: john.underhill@protonmail.com
39 */
40
41#ifndef QSC_QUEUE_H
42#define QSC_QUEUE_H
43
44#include "common.h"
45
46QSC_CPLUSPLUS_ENABLED_START
47
91
96#define QSC_QUEUE_ALIGNMENT 64ULL
97
102#define QSC_QUEUE_MAX_DEPTH 64ULL
103
107QSC_EXPORT_API typedef struct
108{
109 uint8_t** queue;
111 size_t count;
112 size_t depth;
113 size_t position;
114 size_t width;
116
123
130QSC_EXPORT_API void qsc_queue_flush(qsc_queue_state* ctx, uint8_t* output);
131
139QSC_EXPORT_API void qsc_queue_initialize(qsc_queue_state* ctx, size_t depth, size_t width);
140
148
156
164
173QSC_EXPORT_API uint64_t qsc_queue_pop(qsc_queue_state* ctx, uint8_t* output, size_t otplen);
174
183QSC_EXPORT_API void qsc_queue_push(qsc_queue_state* ctx, const uint8_t* input, size_t inplen, uint64_t tag);
184
185#if defined(QSC_DEBUG_MODE)
191QSC_EXPORT_API bool qsc_queue_self_test(void);
192#endif
193
194QSC_CPLUSPLUS_ENABLED_END
195
196#endif
Contains common definitions for the Quantum Secure Cryptographic (QSC) library.
#define QSC_EXPORT_API
API export macro for Microsoft compilers when importing from a DLL.
Definition common.h:520
#define QSC_QUEUE_MAX_DEPTH
The maximum queue depth.
Definition queue.h:102
QSC_EXPORT_API void qsc_queue_push(qsc_queue_state *ctx, const uint8_t *input, size_t inplen, uint64_t tag)
Add an item to the queue.
Definition queue.c:162
QSC_EXPORT_API size_t qsc_queue_items(const qsc_queue_state *ctx)
Get the number of items in the queue.
Definition queue.c:80
QSC_EXPORT_API uint64_t qsc_queue_pop(qsc_queue_state *ctx, uint8_t *output, size_t otplen)
Returns the first member of the queue, and erases that item from the queue.
Definition queue.c:128
QSC_EXPORT_API void qsc_queue_initialize(qsc_queue_state *ctx, size_t depth, size_t width)
Initialize the queue state.
Definition queue.c:53
QSC_EXPORT_API void qsc_queue_dispose(qsc_queue_state *ctx)
Destroy the queue state.
Definition queue.c:7
QSC_EXPORT_API bool qsc_queue_empty(const qsc_queue_state *ctx)
Get the empty status from the queue.
Definition queue.c:112
QSC_EXPORT_API bool qsc_queue_full(const qsc_queue_state *ctx)
Get the full status from the queue.
Definition queue.c:96
QSC_EXPORT_API void qsc_queue_flush(qsc_queue_state *ctx, uint8_t *output)
Flush the content of the queue to an array.
Definition queue.c:31
Contains the queue context state.
Definition queue.h:108
size_t width
Definition queue.h:114
uint64_t tags[QSC_QUEUE_MAX_DEPTH]
Definition queue.h:110
size_t count
Definition queue.h:111
size_t position
Definition queue.h:113
size_t depth
Definition queue.h:112
uint8_t ** queue
Definition queue.h:109