nimiq/key/ed25519/private_key
Types
pub opaque type PrivateKeyValues
pub fn deserialize(
  buf: BitArray,
) -> Result(#(PrivateKey, BitArray), String)pub fn deserialize_all(
  buf: BitArray,
) -> Result(PrivateKey, String)pub fn from_base64(base64: String) -> Result(PrivateKey, String)pub fn from_base64_url(
  base64_url: String,
) -> Result(PrivateKey, String)pub fn from_hex(hex: String) -> Result(PrivateKey, String)pub fn from_string(str: String) -> Result(PrivateKey, String)pub fn generate() -> PrivateKeypub fn serialize(
  builder: bytes_tree.BytesTree,
  key: PrivateKey,
) -> bytes_tree.BytesTreepub fn serialize_to_bits(key: PrivateKey) -> BitArraypub fn to_base64(key: PrivateKey) -> Stringpub fn to_base64_url(key: PrivateKey) -> Stringpub fn to_hex(key: PrivateKey) -> String