-
Notifications
You must be signed in to change notification settings - Fork 628
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: added sasl scram 256 and 512 functionality #1392
base: master
Are you sure you want to change the base?
Conversation
@hyperlink Could you please review this. |
lib/kafkaClient.js
Outdated
const request = protocol.encodeSaslAuthenticateRequest(this.clientId, correlationId, apiVersion, auth); | ||
let request = null; | ||
let decode = null; | ||
let decodeArgs = null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we write this way let request, decode, decodeArgs =null;
Are there any plans to merge this PR to master, so we can have SASL/SCRAM support in the kafka-node module? |
Can we get this merged? |
An error message is displayed when you connect to the ConsumerGroup using RAM-SHA-512. Authentication failed during authentication due to invalid credentials with SASL mechanism SCRAM-SHA-512 |
added scram-sha-256 and scram-sha-512 protocol support for kafka 0.11+.