Interface ModificationVerifier

For protecting resources. This provides a hasValue value (encrypted password).

interface ModificationVerifier {
    algorithmName?: string;
    hashValue: string;
    saltValue?: string;
    spinCount?: number;
}

Properties

algorithmName?: string

Default Value

SHA-512
hashValue: string
saltValue?: string
spinCount?: number

The number of hash iterations performed when protecting or un-protecting

Default Value

1000