This class contains cryptographic primitives that are used by the PCD application SDK and downstream packages.

Constructors

  • Parameters

    • sodium: __module

    Returns PCDCrypto

Properties

sodium: __module

Methods

  • Parameters

    • password: string
    • salt: string
    • length: number = 32

    Returns string

  • Parameters

    • str: string

    Returns string

  • Parameters

    • bits: number = 256

    Returns string

  • Parameters

    • length: number = ...

    Returns string

  • Combines generateSalt and argon2 function, returns both a random salt and the resulting 32-byte encryption key.

    Parameters

    • password: string

    Returns {
        key: string;
        salt: string;
    }

    • key: string
    • salt: string
  • Parameters

    • length: number
    • seed: Uint8Array

    Returns null | Uint8Array

  • Parameters

    • ciphertext: string
    • nonce: string
    • key: string
    • Optional assocData: string | Uint8Array

    Returns null | string

  • Parameters

    • plaintext: string
    • nonce: string
    • key: string
    • Optional assocData: string

    Returns string

  • Parameters

    • Optional sodium: __module

    Returns Promise<PCDCrypto>

Generated using TypeDoc