mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-12 15:01:38 +03:00
35 lines
622 B
C
35 lines
622 B
C
/* gen164/5/ed_puck.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
#include <ed25519.h>
|
|
|
|
/* functions
|
|
*/
|
|
u2_noun
|
|
u2_cwee_puck(u2_noun cor)
|
|
{
|
|
c3_y pub_y[32];
|
|
c3_y sec_y[64];
|
|
c3_y sed_y[32];
|
|
c3_w met_w;
|
|
u2_noun a = u2_cr_at(u2_cv_sam, cor);
|
|
|
|
if ( (u2_none == a) || (u2_no == u2ud(a)) ) {
|
|
return u2_cm_bail(c3__exit);
|
|
}
|
|
|
|
met_w = u2_cr_met(3, a);
|
|
if ( met_w > 32 ) {
|
|
return u2_cm_bail(c3__exit);
|
|
}
|
|
|
|
memset(sed_y, 0, 32);
|
|
u2_cr_bytes(0, met_w, sed_y, a);
|
|
ed25519_create_keypair(pub_y, sec_y, sed_y);
|
|
return u2_ci_bytes(32, pub_y);
|
|
}
|