UNPKG

passport-jose

Version:

Passport JWT strategy with EdDSA, ES256 and modern cryptographic algorithm support via JOSE

7 lines (6 loc) 183 B
export interface AuthHeader { scheme: string; value: string; } declare const parseAuthHeader: (headerValue: string) => AuthHeader | null; export { parseAuthHeader as parse };