comparison filelist.txt @ 1659:d32bcb5c557d

Add Ed25519 support (#91) * Add support for Ed25519 as a public key type Ed25519 is a elliptic curve signature scheme that offers better security than ECDSA and DSA and good performance. It may be used for both user and host keys. OpenSSH key import and fuzzer are not supported yet. Initially inspired by Peter Szabo. * Add curve25519 and ed25519 fuzzers * Add import and export of Ed25519 keys
author Vladislav Grishenko <themiron@users.noreply.github.com>
date Wed, 11 Mar 2020 21:09:45 +0500
parents 3000e5b4dd2d
children
comparison
equal deleted inserted replaced
1658:7402218141d4 1659:d32bcb5c557d
97 97
98 rsa.c RSA asymmetric crypto routines 98 rsa.c RSA asymmetric crypto routines
99 99
100 dss.c DSS asymmetric crypto routines 100 dss.c DSS asymmetric crypto routines
101 101
102 ed25519.c Ed25519 asymmetric crypto routines
103
104 gened25519.c Ed25519 key generation
105
102 gendss.c DSS key generation 106 gendss.c DSS key generation
103 107
104 genrsa.c RSA key generation 108 genrsa.c RSA key generation
105 109
106 bignum.c Some bignum helper functions 110 bignum.c Some bignum helper functions