Subject: | Missing BMPString definition |
Hi,
I'm not sure, but it seems that BMPString definition is missing in BER.pm :
Convert::BER->define(
[...]
[ GeneralizedTime => $STRING, BER_UNIVERSAL | 24],
[ BMPString => $STRING, BER_UNIVERSAL | 30], # <-- MISSING
);
I had to add this line in order to make the following code work :
$ber->encode (
BMPString => 'MyValue'
);
Hope that helps,
bye
Cedric