Last change
on this file was
9598517,
checked in by Brian Warner <warner@…>, at 2012-02-12T15:05:37Z
|
Add Ed25519 signatures, in pycryptopp.publickey.ed25519 . Closes #75.
This copies in version 1.0 of python-ed25519, from
https://github.com/warner/python-ed25519 (or pypi), with minor source-code
rearrangement to match pycryptopp's build process. It includes unit tests,
power-on self-tests, and full known-answer tests. The standard 'setup.py
test' target only exercises 10% of the test vectors, to let the suite run in
about 1.0s on my laptop. The API documentation is in README.ed25519 .
Tests have been run successfully on Linux, OS-X and windows.
|
-
Property mode set to
100644
|
File size:
184 bytes
|
Line | |
---|
1 | |
---|
2 | CC=gcc |
---|
3 | CFLAGS=-O2 -Wall |
---|
4 | |
---|
5 | OBJS= fe25519.o ge25519.o sc25519.o sha512-blocks.o sha512-hash.o ed25519.o randombytes.o verify.o |
---|
6 | test: test.o $(OBJS) |
---|
7 | gcc -o $@ $^ |
---|
8 | |
---|
9 | clean: |
---|
10 | rm -f *.o test |
---|
Note: See
TracBrowser
for help on using the repository browser.