in reply to Re^5: Perl SHA256
in thread Perl SHA256

Why are you shelling out and running a command line when you can just use the module within your code?

#!/usr/bin/perl use strict; use warnings; use Digest::SHA qw(sha256_hex); my $email = 'test@example.com'; my $email_sha256 = sha256_hex( $email ); print "$email_sha256\n";

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.