Algorithm-IRCSRP2
view release on metacpan or search on metacpan
lib/Algorithm/IRCSRP2.pm view on Meta::CPAN
package Algorithm::IRCSRP2;
BEGIN {
$Algorithm::IRCSRP2::VERSION = '0.501';
}
# ABSTRACT: IRC channel encryption algorithm
use Moose;
# core
use Data::Dumper;
use Digest::SHA;
use MIME::Base64;
use Math::BigInt only => 'GMP,Pari';
# CPAN
use Crypt::OpenSSL::AES;
# local
use Algorithm::IRCSRP2::Utils qw(:all);
has 'error' => (
'isa' => 'Str',
'is' => 'rw',
);
has 'nickname' => (
'isa' => 'Str',
'is' => 'rw',
'default' => 'unknown'
);
has 'debug_cb' => (
'isa' => 'CodeRef',
'is' => 'rw',
'default' => sub {
sub {
my @args = @_;
@args = grep { defined($_) } @args;
print(@args);
}
}
);
has '_orig_debug_cb' => (
'isa' => 'CodeRef',
'is' => 'rw',
'default' => sub {
sub {
}
}
);
has 'am_i_dave' => (
'isa' => 'Bool',
'is' => 'ro',
);
has 'cbc_blocksize' => (
'isa' => 'Int',
'is' => 'ro',
'default' => 16
);
# -------- methods --------
sub BUILD {
my ($self) = @_;
my $orig_cb = $self->debug_cb;
$self->_orig_debug_cb($orig_cb);
my $new_cb = sub {
my $str = join('', @_);
$str = (($self->am_i_dave) ? 'Dave: ' : 'Alice: ') . $self->nickname . ' ' . $str;
return $orig_cb->($str);
};
$self->debug_cb($new_cb);
return;
}
lib/Algorithm/IRCSRP2.pm view on Meta::CPAN
# cmac = HM(mackey, ctext)
my $cmac = hmac_sha256_128($self->mac_key, $ctext);
# ircmessage = "*" || Base64(cmac || ctext)
return '*' . MIME::Base64::encode_base64($cmac . $ctext, '');
}
no Moose;
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=head1 NAME
Algorithm::IRCSRP2 - IRC channel encryption algorithm
=head1 VERSION
version 0.501
=head1 DESCRIPTION
L<Algorithm::IRCSRP2> implements the IRCSRP version 2 algorithm as specified in
L<http://www.bjrn.se/ircsrp/ircsrp.2.0.txt>.
From the specification:
IRCSRP is based on the SRP-6 protocol [3] for password-authenticated key
agreement. While SRP was originally designed for establishing a secure,
authenticated channel between a user and a host, it can be adapted for group
communcations, as described in this document.
See L<https://gitorious.org/ircsrp/ircsrp> for a working version used in Pidgin.
=head1 CURRENT CAVEATS
=over
=item * Only Alice is implemented (initial Dave started)
=back
=head1 ATTRIBUTES
=head2 Optional Attributes
=over
=item * B<am_i_dave> (ro, Bool) - Child class will set this.
=item * B<cbc_blocksize> (ro, Int) - CBC blocksize. Defaults to '16'.
=item * B<debug_cb> (rw, CodeRef) - Debug callback. Defaults to C<print()>
=item * B<error> (rw, Str) - If set, there was an error.
=item * B<nickname> (rw, Str) - Child class will set this. Defaults to 'unknown'.
=back
=head1 PUBLIC API METHODS
=over
=item * B<init()> - Setup object for key exchange.
=item * B<encrypt_message($msg, $who)> - Returns encrypted message with
plaintext C<$msg> from nickname C<$who>.
=item * B<decrypt_message($msg)> - Returns decrypted text from encrypted
C<$msg>. C<die()>s on errors.
=back
=head1 SEE ALSO
=over
=item * L<http://www.bjrn.se/ircsrp/>
=item * See L<https://gitorious.org/ircsrp/ircsrp> for a working version used in
Pidgin.
=back
=head1 AUTHOR
Adam Flott <adam@npjh.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Adam Flott.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
( run in 0.921 second using v1.01-cache-2.11-cpan-c966e8aa7e8 )