ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Crypt-Ed25519/Ed25519.pm
(Generate patch)

Comparing Crypt-Ed25519/Ed25519.pm (file contents):
Revision 1.5 by root, Sun Mar 29 06:19:46 2015 UTC vs.
Revision 1.8 by root, Wed Jun 24 12:18:02 2015 UTC

74=cut 74=cut
75 75
76package Crypt::Ed25519; 76package Crypt::Ed25519;
77 77
78BEGIN { 78BEGIN {
79 $VERSION = '0.9'; 79 $VERSION = 1.01;
80 80
81 require XSLoader; 81 require XSLoader;
82 XSLoader::load Crypt::Ed25519::, $VERSION; 82 XSLoader::load Crypt::Ed25519::, $VERSION;
83} 83}
84 84
188key to a public/private key pair allows you to sign a small message, or 188key to a public/private key pair allows you to sign a small message, or
189many messages, faster. 189many messages, faster.
190 190
191=head1 IMPLEMENTATIOIN 191=head1 IMPLEMENTATIOIN
192 192
193This module currently uses "Nightcracker's Ed25519" implementation, but 193This module currently uses "Nightcracker's Ed25519" implementation, which
194is unmodified except for some portability fixes and static delcarations,
194the interface is kept implementation-agnostic to allow usage of other 195but the interface is kept implementation-agnostic to allow usage of other
195implementations in the future. 196implementations in the future.
196 197
197=head1 AUTHOR 198=head1 AUTHOR
198 199
199 Marc Lehmann <schmorp@schmorp.de> 200 Marc Lehmann <schmorp@schmorp.de>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines