summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/passwdfile.pm
blob: 6713c8d82730281c727269e1fd94c5d31ea242ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package FS::part_export::passwdfile;

use strict;
use vars qw(@ISA %options);
use Tie::IxHash;
use FS::part_export::null;

@ISA = qw(FS::part_export::null);

tie %options, 'Tie::IxHash',
  'crypt' => { label=>'Password encryption',
               type=>'select', options=>[qw(crypt md5 sha512)],
               default=>'md5',
             },
;

1;