Digest Key
The Digest Key
in Garden is a 32-byte cryptographic key that serves as a unique identifier for users, designed for authentication, identity, and secret management in atomic swaps. It is used for authentication via JWTs, enabling secure access, and for identity, allowing order processing and unique user identification. Additionally, it plays a critical role in managing secrets for atomic swaps. This key functions as a Garden account, but it is strictly non-custodial, with no funds ever being associated with it or moved through it.
import { DigestKey } from '@gardenfi/core';
Constructor
new DigestKey(digestKey: string)
Parameters:
digestKey
(string): A valid digest key in hexadecimal format (64-characters).
Methods
from
DigestKey.from(digestKey: string): Result<DigestKey, string>
Validates the provided digest key and returns a DigestKey
instance if valid, or an error message if invalid.
Returns:
Result<DigestKey, string>
generateRandom
DigestKey.generateRandom(): Result<DigestKey, string>
Generates a random digest key and returns a valid DigestKey
instance or an error message if generation fails.
Returns:
Result<DigestKey, string>