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