sasl-scram

kafka SASL/SCRAM Failed authentication

拈花ヽ惹草 提交于 2020-12-12 12:10:27
问题 I tried to add security to my kafka cluster, I followed the documentation: https://kafka.apache.org/documentation/#security_sasl_scram https://docs.confluent.io/current/kafka/authentication_sasl/authentication_sasl_scram.html# I add the user using this: kafka-configs.sh --zookeeper zookeeper1:2181 --alter --add-config 'SCRAM-SHA-256=[password=admin-secret],SCRAM-SHA-512=[password=admin-secret]' --entity-type users --entity-name admin I modify the server.properties: broker.id=1 listeners=SASL

kafka SASL/SCRAM Failed authentication

喜欢而已 提交于 2020-12-12 12:07:54
问题 I tried to add security to my kafka cluster, I followed the documentation: https://kafka.apache.org/documentation/#security_sasl_scram https://docs.confluent.io/current/kafka/authentication_sasl/authentication_sasl_scram.html# I add the user using this: kafka-configs.sh --zookeeper zookeeper1:2181 --alter --add-config 'SCRAM-SHA-256=[password=admin-secret],SCRAM-SHA-512=[password=admin-secret]' --entity-type users --entity-name admin I modify the server.properties: broker.id=1 listeners=SASL

kafka SASL/SCRAM Failed authentication

扶醉桌前 提交于 2020-12-12 12:07:17
问题 I tried to add security to my kafka cluster, I followed the documentation: https://kafka.apache.org/documentation/#security_sasl_scram https://docs.confluent.io/current/kafka/authentication_sasl/authentication_sasl_scram.html# I add the user using this: kafka-configs.sh --zookeeper zookeeper1:2181 --alter --add-config 'SCRAM-SHA-256=[password=admin-secret],SCRAM-SHA-512=[password=admin-secret]' --entity-type users --entity-name admin I modify the server.properties: broker.id=1 listeners=SASL

Implementing MongoDB SASL Authentication in cl-mongo

杀马特。学长 韩版系。学妹 提交于 2019-12-23 08:53:22
问题 I've forked the cl-mongo (common lisp MongoDB library) repository from fons, as it has fallen out of maintenance and does not support the SCRAM-SHA-1 login process. This is my fork: https://github.com/mprelude/cl-mongo -- the main changes are adding a dependence on cl-scram (my implementation of SCRAM), and adding a bson binary generic container. I'm still trying to send the initial message, so the issue isn't that the password is wrong, as that isn't used yet. Why is this part of the

How many iterations does the scram-sha-256 setting use in PostgreSQL 10?

冷暖自知 提交于 2019-12-11 03:24:43
问题 How many iterations does the scram-sha-256 setting use in PostgreSQL 10? The docs just say Setting this parameter to scram-sha-256 will encrypt the password with SCRAM-SHA-256. The build log reads. Add SCRAM-SHA-256 support for password negotiation and storage (Michael Paquier, Heikki Linnakangas) This proves better security than the existing md5 negotiation and storage method. 回答1: It's a compile-time variable in scram-common.h known as SCRAM_ITERATIONS_DEFAULT. Currently it's set to 4096.

XMPP SASL SCRAM-SHA1 Authentication

杀马特。学长 韩版系。学妹 提交于 2019-11-28 17:39:32
Recently, I was able to get MD5 authentication working for XMPP streams in Swift IOS following the instructions on the following two websites (I used the CC-MD5 function of Apple's CommonCrypto C library for the actual hashing): http://wiki.xmpp.org/web/SASLandDIGEST-MD5 http://www.deusty.com/2007/09/example-please.html I'm searching for a similar explanation for how to get other hashed SASL authentication schemes working, especially SCRAM-SHA1. I have found the official RFC5802 document but I'm having a lot of trouble understanding it (it is not specific to XMPP either). I would appreciate a

XMPP SASL SCRAM-SHA1 Authentication

余生长醉 提交于 2019-11-27 10:59:23
问题 Recently, I was able to get MD5 authentication working for XMPP streams in Swift IOS following the instructions on the following two websites (I used the CC-MD5 function of Apple's CommonCrypto C library for the actual hashing): http://wiki.xmpp.org/web/SASLandDIGEST-MD5 http://www.deusty.com/2007/09/example-please.html I'm searching for a similar explanation for how to get other hashed SASL authentication schemes working, especially SCRAM-SHA1. I have found the official RFC5802 document but