Skip to content

MIRACL Cryptographic SDK: Multiprecision Integer and Rational Arithmetic Cryptographic Library is a C software library that is widely regarded by developers as the gold standard open source SDK for elliptic curve cryptography (ECC).

liuqun/MIRACL

 
 

Repository files navigation

typedef int mr_utype;
typedef mr_utype mr_small;

typedef unsigned int mr_lentype;

struct bigtype
{
    mr_lentype len;
    mr_small *w;
};                

typedef struct bigtype *big;

typedef big zzn;

typedef struct
{
    big a;
    big b;
} zzn2;

typedef struct 
{
    int marker;
    zzn2 x;
    zzn2 y;
    zzn2 z;
} ecn2;

About

MIRACL Cryptographic SDK: Multiprecision Integer and Rational Arithmetic Cryptographic Library is a C software library that is widely regarded by developers as the gold standard open source SDK for elliptic curve cryptography (ECC).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 52.1%
  • C++ 45.2%
  • Smarty 1.6%
  • Batchfile 0.9%
  • Makefile 0.2%
  • Assembly 0.0%