Class: Autosign::Validator::Passwordlist

Inherits:
ValidatorBase show all
Defined in:
lib/autosign/validator/passwordlist.rb

Overview

Validate certificate signing requests using a simple password list. This is not a very secure or flexible validation scheme, but is provided because so many existing autosign policy scripts implement it.

Examples:

validate CSRs when the challengePassword OID is set to any of “hunter2”, “opensesame”, or “CPE1704TKS”

# In /etc/autosign.conf, include the following configuration:
[password_list]
password = hunter2
password = opensesame
password = CPE1704TKS

Constant Summary collapse

NAME =
'password_list'

Instance Attribute Summary

Attributes inherited from ValidatorBase

#config_file_settings

Method Summary

Methods inherited from ValidatorBase

#initialize, #name, #validate

Constructor Details

This class inherits a constructor from Autosign::Validator::ValidatorBase