det-keygen 0.1.0

Derivation of ECDSA private keys from arbitrary seeds, using FIPS 186-5 methods only
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- create the interface for P<256> that yields a 32-byte array

- make it a crate
- move N into constants using hybrid-array

trait Curve {

    const LEN: Size;
    const N: Unsigned<Size>;
    const PERSONALIZATION_STRING: &'static [u8];

    fn generate(temp: &[u8]) -> Option<[u8; Size]>;

}