@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface FileEncryptionInfo

    A representation of the information used to encrypt a file.

    FileEncryptionInfo

    interface FileEncryptionInfo {
        hashes?: HashAlgorithmMap;
        iv: string;
        key: any;
        v?: string;
    }
    Index

    Properties

    Properties

    A map from an algorithm name to a hash of the ciphertext, encoded as unpadded base64. Clients should support the SHA-256 hash, which uses the key sha256.

    iv: string

    The 128-bit unique initialization vector used by AES-CTR, encoded as unpadded base64.

    key: any

    A web key object containing the key used to encrypt.

    v?: string

    The optional version of the encrypted payload protocol.