Elliptic Curve Digital Signature Algorithm: Difference between revisions

m
→‎{{header|Perl}}: future-proof for 5.36
m (syntax highlighting fixup automation)
m (→‎{{header|Perl}}: future-proof for 5.36)
Line 1,402:
=={{header|Perl}}==
{{trans|Go}}
<syntaxhighlight lang="perl">#use 20200828 added Perl programming solutionstrict;
 
use strict;
use warnings;
 
use Crypt::EC_DSA;
 
my $ecdsa = new Crypt::EC_DSA->new;
 
my ($pubkey, $prikey) = $ecdsa->keygen;
2,392

edits