Crate symbol_crypto_core

Crate symbol_crypto_core 

Source
Expand description

§Complete Symbol & Nis1 blockchain crypto library implementation.

§Quickstart: prelude

A prelude is provided which imports all the important data types and traits for you. Use this when you want to quickly bootstrap a new project.

use symbol_crypto_core::prelude::*;

Examples on how you can use the types imported by the prelude can be found in the examples directory of the repository and in the tests/ directories of each crate.

§Quick explanation of each module in ascending order of abstraction

§core

Contains all the [necessary data structures] what Symbol & Nis1 have in common.

§crypto-sym

Symbol Bockchain crypto library, along with cryptographic utilities for signing and verifying Edwards Digital Signature Algorithm (EdDSA) over Curve25519.

§crypto-nis1

Nis1 Bockchain crypto library, along with cryptographic utilities for signing and verifying Edwards Digital Signature Algorithm (EdDSA) over Curve25519.

Re-exports§

pub use sym_crypto as sym;