You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
213 B

  1. BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
  2. use ECKeys qw(eckeygen);
  3. use YAML::Syck qw(Dump);
  4. my $id = eckeygen('tb','Test Bot');
  5. printf "keys: %s\n",Dump($ECKeys::keys);
  6. exit $?;
  7. 1;