in reply to Re^5: Undefined subroutine on ARM but not i686
in thread Undefined subroutine on ARM but not i686
sub sha256 { my $state = _shaopen('256') or return; for (@_) { _shawrite($_, length($_) << 3, $state) } _shafinish($state); _sha($state); } push(@EXPORT_OK, 'sha256');
|
|---|