File: Whirlpool.pm

package info (click to toggle)
libdbix-class-encodedcolumn-perl 0.00020-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 236 kB
  • sloc: perl: 616; sql: 48; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package # hide from PAUSE
    DigestTest::Schema::Whirlpool;

use strict;
use warnings;
use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/EncodedColumn Core/);
__PACKAGE__->table('test_whirlpool');
__PACKAGE__->add_columns(
  id => {
    data_type => 'int',
    is_nullable => 0,
    is_auto_increment => 1
  },
  whirlpool_hex => {
    data_type => 'char',
    is_nullable => 1,
    size => 128,
    encode_column => 1,
    encode_class  => 'Digest',
    encode_args   => {
      format => 'hex',
      algorithm => 'Whirlpool',
    },
    encode_check_method => 'check_whirlpool_hex',
  },
  whirlpool_b64 => {
    data_type => 'char',
    is_nullable => 1,
    size => 86,
    encode_column => 1,
    encode_class  => 'Digest',
    encode_args   => {
      algorithm => 'Whirlpool',
    },
    encode_check_method => 'check_whirlpool_b64',
  },
);

__PACKAGE__->set_primary_key('id');

1;