mirror of
https://github.com/beclab/Olares
synced 2026-05-21 07:48:23 +00:00
6 lines
306 B
Go
6 lines
306 B
Go
// Package crypto provides the following functionality:
|
|
// * Key Generation: secp256k1, ed25519
|
|
// * Signing: secp256k1, ed25519
|
|
// * Verification: secp256k1, ed25519
|
|
// * A KeyManager abstraction that can be leveraged to manage/use keys (create, sign etc) as desired per the given use case
|
|
package crypto
|