kt icon indicating copy to clipboard operation
kt copied to clipboard

New Auth Mechanism SASL_SSL SCRAM-SHA-256

Open vijeyanidhi opened this issue 1 year ago • 2 comments

Hi,

Is it possible to support a new auth mechanism

security.protocol=SASL_SSL sasl.mechanism=SCRAM-SHA-256 ssl.endpoint.identification.algorithm=

This uses, ssl.truststore.location= ssl.truststore.password= sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="" password="";

vijeyanidhi avatar Oct 01 '23 06:10 vijeyanidhi

actual for me

kripsy avatar Jan 24 '24 14:01 kripsy

PR #146 was added with support for SCRAM-SHA-256.

@vijeyanidhi can you please apply the PR and check if it works for you?

a sample auth.json file:

{
  "mode": "SASL",
  "sasl_plain_user": "<username",
  "sasl_plain_password": "<password>",
  "security_protocol": "SASL_SSL",
  "sasl_mechanism": "scram-sha256"
}

naude-r avatar Apr 08 '24 10:04 naude-r