mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
11 lines
187 B
C
11 lines
187 B
C
#ifndef URCRYPT_H
|
|
#define URCRYPT_H
|
|
|
|
#include <stdint.h>
|
|
#include <ed25519.h>
|
|
#include <ge-additions.h>
|
|
|
|
int urcrypt_ed_scalarmult(uint8_t a[32], uint8_t b[32], uint8_t out[32]);
|
|
|
|
#endif
|