The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

package Schema::RDBMS::AUS::Crypt::SHA1;

use strict;
use warnings;
use Digest::SHA1 qw(sha1_hex);

return 1;

sub crypt {
    return sha1_hex($_[1]);
}