Business-TrueLayer
view release on metacpan or search on metacpan
lib/Business/TrueLayer/Signer.pm view on Meta::CPAN
To generate your private key, run the following command in your terminal.
The keys you generate will save to your current directory.
openssl ecparam -genkey -name secp521r1 -noout -out ec512-private-key.pem
Then, to generate your public key, run this command in your terminal.
openssl ec -in ec512-private-key.pem -pubout -out ec512-public-key.pem
You then need to upload the public key to the TrueLayer console.
Having done that you can supply the path to your private key when using
the main L<Business::TrueLayer> module. You shouldn't need to do anything
else here, the distribution will handle signing when creating requests.
=cut
use strict;
use warnings;
use feature qw/ signatures postderef /;
( run in 1.832 second using v1.01-cache-2.11-cpan-b16cb0d3907 )