package Keys; require Exporter; @ISA=qw(Exporter); @EXPORT_OK=qw(PUBLIC_KEY PRIVATE_KEY); use warnings; use strict; use constant PUBLIC_KEY => 'public key here'; use constant PRIVATE_KEY => 'private key here'; 1;