Skip to content

Commit 5ac2ec9

Browse files
committed
Azure#63 solved the problem, with base64 library.
1 parent f374491 commit 5ac2ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/azure/core/auth/signer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def initialize(access_key)
3232
raise ArgumentError, 'Signing key must be provided'
3333
end
3434

35-
@access_key = Base64.strict_decode64(access_key)
35+
@access_key = Base64.decode64(access_key)
3636
end
3737

3838
# Generate an HMAC signature.

0 commit comments

Comments
 (0)