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

Comparing cvsroot/Crypt-Ed25519/Ed25519.pm (file contents):
Revision 1.2 by root, Sat Mar 28 19:42:35 2015 UTC vs.
Revision 1.4 by root, Sun Mar 29 05:55:48 2015 UTC

40=cut 40=cut
41 41
42package Crypt::Ed25519; 42package Crypt::Ed25519;
43 43
44BEGIN { 44BEGIN {
45 $VERSION = '0.2'; 45 $VERSION = '0.9';
46 46
47 require XSLoader; 47 require XSLoader;
48 XSLoader::load Crypt::Ed25519::, $VERSION; 48 XSLoader::load Crypt::Ed25519::, $VERSION;
49} 49}
50 50
119You can convert an EdDSA secret to an Ed25519 private/public key pair 119You can convert an EdDSA secret to an Ed25519 private/public key pair
120using C<Crypt::Ed25519::generate_keypair>: 120using C<Crypt::Ed25519::generate_keypair>:
121 121
122 ($public_key, $private_key) = Crypt::Ed25519::generate_keypair $secret 122 ($public_key, $private_key) = Crypt::Ed25519::generate_keypair $secret
123 123
124=head2 IMPLEMENTATIOIN 124=head1 IMPLEMENTATIOIN
125 125
126This module currently uses "Nightcracker's Ed25519" implementation, but 126This module currently uses "Nightcracker's Ed25519" implementation, but
127the interface is kept implementation-agnostic to allow usage of other 127the interface is kept implementation-agnostic to allow usage of other
128implementations in the future. 128implementations in the future.
129 129

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines