You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The underlying encode_base64() from MIME::Base64 expects bytes which is breaking when the key contains unicode chars. Can we encode key string using utf-8 along the lines of:
encode_base64(encode('utf-8', $key));
Thanks!
The text was updated successfully, but these errors were encountered:
The underlying
encode_base64()
fromMIME::Base64
expects bytes which is breaking when the key contains unicode chars. Can we encode key string usingutf-8
along the lines of:encode_base64(encode('utf-8', $key));
Thanks!
The text was updated successfully, but these errors were encountered: