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.11 by root, Mon Jun 29 12:33:37 2015 UTC vs.
Revision 1.13 by root, Tue Feb 28 19:53:08 2017 UTC

74=cut 74=cut
75 75
76package Crypt::Ed25519; 76package Crypt::Ed25519;
77 77
78BEGIN { 78BEGIN {
79 $VERSION = 1.03; 79 $VERSION = 1.04;
80 80
81 require XSLoader; 81 require XSLoader;
82 XSLoader::load Crypt::Ed25519::, $VERSION; 82 XSLoader::load Crypt::Ed25519::, $VERSION;
83} 83}
84 84
141your secret key. 141your secret key.
142 142
143=item $public_key = Crypt::Ed25519::eddsa_public_key $secret_key 143=item $public_key = Crypt::Ed25519::eddsa_public_key $secret_key
144 144
145Takes a secret key generated by C<Crypt::Ed25519::eddsa_secret_key> 145Takes a secret key generated by C<Crypt::Ed25519::eddsa_secret_key>
146and returns the corresponding C<$public_key>. The derivation ios 146and returns the corresponding C<$public_key>. The derivation is
147deterministic, i.e. the C<$public_key> generated for a specific 147deterministic, i.e. the C<$public_key> generated for a specific
148C<$secret_key> is always the same. 148C<$secret_key> is always the same.
149 149
150This public key corresponds to the public key in the Ed25519 API above. 150This public key corresponds to the public key in the Ed25519 API above.
151 151

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines