1<?php
2/**
3 * Options for the passpolicy plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8$meta['minlen'] = array('numeric', '_min' => 0);
9$meta['pools'] = array('multicheckbox', '_choices' => array('lower', 'upper', 'numeric', 'special'));
10$meta['minpools'] = array('numeric', '_min' => 0, '_max' => 4);
11$meta['user'] = array('numeric', '_min' => 0);
12$meta['nocommon'] = array('onoff');
13$meta['noleaked'] = array('onoff');
14
15$meta['autotype'] = array('multichoice', '_choices' => array('random', 'phrase', 'pronouncable'));
16$meta['autobits'] = array('numeric', '_min' => 24);
17
18$meta['supressuserhints'] = array('onoff');
19