mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
10 lines
121 B
C
10 lines
121 B
C
|
#ifndef CBD_H
|
||
|
#define CBD_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "poly.h"
|
||
|
|
||
|
void cbd(poly *r, const unsigned char *buf);
|
||
|
|
||
|
#endif
|