DEBSOURCES
Skip Quicknav
sources / python-axolotl-curve25519 / 0.4.1.post2-2 / curve / ed25519 / additions / sc_clamp.c
12345678
#include "crypto_additions.h" void sc_clamp(unsigned char* a) { a[0] &= 248; a[31] &= 127; a[31] |= 64; }