We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05fb8ec commit 8691192Copy full SHA for 8691192
src/main/kotlin/at/bitfire/dav4jvm/BasicDigestAuthHandler.kt
@@ -200,7 +200,8 @@ class BasicDigestAuthHandler(
200
else ->
201
null
202
}
203
- logger.finer("A1=$a1")
+ // Contains password! Only uncomment for debugging:
204
+ // logger.finer("A1=$a1")
205
206
val a2: String? = when (qop) {
207
Protection.Auth ->
@@ -215,7 +216,7 @@ class BasicDigestAuthHandler(
215
216
217
218
- logger.finer("A2=$a2")
219
+ // logger.finer("A2=$a2")
220
221
if (a1 != null && a2 != null)
222
response = kd(h(a1), "$nonce:$ncValue:$clientNonce:${qop.qop}:${h(a2)}")
0 commit comments