urbit/gen164/5/ed_veri.c

59 lines
1.3 KiB
C
Raw Normal View History

2014-04-13 06:59:02 +04:00
/* gen164/5/ed_sign.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
#include <ed25519.h>
/* functions
*/
u2_weak
j2_mdc(Pt5, coed, ed, veri)(u2_wire wir_r,
u2_noun s,
u2_noun m,
u2_noun pk)
{
c3_y sig_y[64];
2014-04-30 04:26:44 +04:00
c3_y pub_y[32];
c3_w ret;
2014-04-13 06:59:02 +04:00
c3_y* mes_y;
2014-04-30 04:26:44 +04:00
c3_w mesm_w = u2_met(3, m);
memset(sig_y, 0, 64);
2014-04-30 04:26:44 +04:00
memset(pub_y, 0, 32);
2014-04-13 06:59:02 +04:00
mes_y = c3_malloc(mesm_w);
u2_cr_bytes(0, 64, sig_y, s);
2014-04-30 04:26:44 +04:00
u2_cr_bytes(0, 32, pub_y, pk);
2014-04-13 06:59:02 +04:00
u2_cr_bytes(0, mesm_w, mes_y, m);
ret = ed25519_verify(sig_y, mes_y, mesm_w, pub_y) == 1 ? u2_yes : u2_no;
free(mes_y);
return ret;
}
u2_weak
j2_md(Pt5, coed, ed, veri)(u2_wire wir_r,
u2_noun cor)
{
u2_noun a, b, c;
if ( u2_no == u2_mean(cor,
u2_cv_sam_2, &a, u2_cv_sam_6, &b,
u2_cv_sam_7, &c, 0) ) {
return u2_bl_bail(wir_r, c3__fail);
} else {
return j2_mdc(Pt5, coed, ed, veri)(wir_r, a, b, c);
}
}
/* structures
*/
u2_ho_jet
j2_mdj(Pt5, coed, ed, veri)[] = {
2014-05-01 03:31:08 +04:00
{ ".2", c3__lite, j2_md(Pt5, coed, ed, veri), Tier5, u2_none, u2_none },
2014-04-13 06:59:02 +04:00
{ }
};