Lines Matching full:sdsa
11 #include "sdsa.h"
25 * scheme (aka SDSA for Schnorr DSA) based on libecc arithmetic primitives.
27 * one corresponding to SDSA as described in the ISO14888-3 standard.
31 * not optimized for big numbers >= 1024 bits usually used for SDSA.
48 * have to be considered. Use this SDSA code knowingly and at your own risk!
52 /* NOTE: since SDSA is very similar to DSA, we reuse some of our DSA
53 * primitives to factorize some code. Also, SDSA private and public keys
57 /* Import a SDSA private key from buffers */
66 /* Import a SDSA public key from buffers */
77 /* Compute a SDSA public key from a private key.
86 /* Generate a SDSA signature
250 /* Verify a SDSA signature
363 #ifdef SDSA
369 /* This example is taken from ISO14888-3 SDSA (Appendix F "Numerical examples" */ in main()