Skip to content

Commit

Permalink
Azure#63 solved the problem, with base64 library.
Browse files Browse the repository at this point in the history
  • Loading branch information
katmsft committed Feb 24, 2020
1 parent f374491 commit 5ac2ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/azure/core/auth/signer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def initialize(access_key)
raise ArgumentError, 'Signing key must be provided'
end

@access_key = Base64.strict_decode64(access_key)
@access_key = Base64.decode64(access_key)
end

# Generate an HMAC signature.
Expand Down

0 comments on commit 5ac2ec9

Please sign in to comment.