Expand description
This is largely based on
sp_core crate. Draft.
Key differences here:
- no-std compatible with arm
- sr25519 supports external Rng, for usability on baremetal
- ecdsa support based on pure Rust crate
k256, to avoidno-stdtarget compiling difficulties (originalsp-corehas ecdsa fromsecp256k1, a C wrapper crate, and as a result ecdsa parts fromsp-coredo not compile on certainno-stdtargets and create extremely large binary blob on others) - ecdsa pair has zeroize on drop