10 lines
147 B
C
10 lines
147 B
C
#ifndef QJS_CRYPTO_H
|
|
#define QJS_CRYPTO_H
|
|
|
|
#include "cell.h"
|
|
|
|
JSValue js_crypto_use(JSContext *ctx);
|
|
int randombytes(void *buf, size_t n);
|
|
|
|
#endif
|