mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
22 lines
757 B
C
22 lines
757 B
C
#ifndef URCRYPT_H
|
|
#define URCRYPT_H
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <ed25519.h>
|
|
#include <ge-additions.h>
|
|
|
|
int urcrypt_ed_point_add(uint8_t a[32], uint8_t b[32], uint8_t out[32]);
|
|
int urcrypt_ed_scalarmult(uint8_t a[32], uint8_t b[32], uint8_t out[32]);
|
|
void urcrypt_ed_scalarmult_base(uint8_t a[32], uint8_t out[32]);
|
|
int urcrypt_ed_add_scalarmult_scalarmult_base(uint8_t a[32],
|
|
uint8_t a_point[32],
|
|
uint8_t b[32],
|
|
uint8_t out[32]);
|
|
void urcrypt_ed_sign(uint8_t *message,
|
|
size_t length,
|
|
uint8_t seed[32],
|
|
uint8_t signature[64]);
|
|
|
|
#endif
|