mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-15 00:01:37 -04:00
23 lines
419 B
C
23 lines
419 B
C
/**
|
|
* \file oqs.h
|
|
* \brief Overall header file for liboqs.
|
|
*
|
|
* C programs using liboqs can include just this one file, and it will include all
|
|
* other necessary headers from liboqs.
|
|
*/
|
|
|
|
#ifndef OQS_H
|
|
#define OQS_H
|
|
|
|
#include <oqs/oqsconfig.h>
|
|
|
|
#include <oqs/common.h>
|
|
#include <oqs/aes.h>
|
|
#include <oqs/sha2.h>
|
|
#include <oqs/sha3.h>
|
|
#include <oqs/rand.h>
|
|
#include <oqs/kem.h>
|
|
#include <oqs/sig.h>
|
|
|
|
#endif // OQS_H
|