in reply to Re^2: Signed Long Hash
in thread Signed Long Hash
See MIME::Base64 and perhaps pack.
Update: Although I do not receive the same result - are you sure about the input and output?
use strict; use warnings; use MIME::Base64 'encode_base64'; use Test::More tests => 1; is (encode_base64((pack 'q', -281581062704388899), ''), '/Befg+4HJN0') +;
gives '3SQH7oOfF/w=' instead.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Signed Long Hash
by breezykatt (Acolyte) on Jun 15, 2017 at 18:14 UTC |