passport-cert-header
Version:
Passport.js strategy for forwarded client certificate authentication
24 lines (20 loc) • 453 B
JavaScript
/**
* The `passport-cert-header` module provides a {@link https://www.passportjs.org/ Passport}
* strategy for authenticating a forwarded client cert.
*
* @module passport-cert-header
*/
// Module dependencies.
var Strategy = require('./strategy');
/*
* `{@link Strategy}` constructor.
*
* @type {function}
*/
exports = module.exports = Strategy;
/*
* `{@link Strategy}` constructor.
*
* @type {function}
*/
exports.Strategy = Strategy;