Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: SASL's signature consists of the string representation of the pa…
…yload, not base64 `payload.value()` already returns a string, so calling on it `toString('base64')` implies the signature consists of a base64 representation, but the plain string is required. The first argument ('base64') of String.toString is dropped, so although the code works as expected (by accident) it implies that it was desired to have a base64 there, which is wrong. Dropped the toString() call to not confuse driver authors when they want to get inspiration from this JS driver.
- Loading branch information