Remix Utils - v9.0.0
    Preparing search index...
    interface DynamicUserOptions {
        hashFunction?: HashFunction;
        invalidUserMessage?:
            | string
            | object
            | createBasicAuthMiddleware.MessageFunction;
        realm?: string;
        verifyUser(
            username: string,
            password: string,
            args: createBasicAuthMiddleware.Args,
        ): boolean | Promise<boolean>;
    }

    Hierarchy

    • BaseOptions
      • DynamicUserOptions
    Index

    Properties

    hashFunction?: HashFunction
    invalidUserMessage?: string | object | createBasicAuthMiddleware.MessageFunction
    realm?: string

    The domain name of the realm, as part of the returned WWW-Authenticate challenge header.

    Methods