UNPKG

axis-core

Version:

A Node.js library written in TypeScript containing shared behavior for the other packages, e.g. code handling communication and authentication with Axis Communication cameras.

12 lines 428 B
export declare const DIGEST = "Digest"; export interface Challenge { type: 'Digest'; realm: string; nonce: string; qop?: string; opaque?: string; algorithm?: string; } export declare const createHeader: (method: string, url: string, username: string, password: string, challenge: Challenge, cnonce?: string) => string; export declare const createCnonce: () => string; //# sourceMappingURL=digest.d.ts.map