interface HoneypotConfig {
    encryptionSeed?: string;
    nameFieldName?: string;
    randomizeNameFieldName?: boolean;
    validFromFieldName?: null | string;
}

Properties

encryptionSeed?: string

The seed used for the encryption of the valid from timestamp.

nameFieldName?: string

The name of the field that will be used for the honeypot input.

randomizeNameFieldName?: boolean

Enable randomization of the name field name, this way the honeypot field name will be different for each request.

validFromFieldName?: null | string

The name of the field that will be used for the honeypot valid from input.