Skip to content
Snippets Groups Projects
Commit ac5fc84b authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fixed request and reset notificiations

parent 6c2fbf5a
No related branches found
No related tags found
2 merge requests!233Modify restore to call user-defined bindings callback. Add Sent requests to...,!231Revert "Update store to print changes to the partners list"
...@@ -43,9 +43,9 @@ func sendAuthRequest(recipient *id.ID, contents, mac []byte, primeSize int, ...@@ -43,9 +43,9 @@ func sendAuthRequest(recipient *id.ID, contents, mac []byte, primeSize int,
jww.INFO.Printf("Requesting Auth with %s, msgDigest: %s", jww.INFO.Printf("Requesting Auth with %s, msgDigest: %s",
recipient, cmixMsg.Digest()) recipient, cmixMsg.Digest())
if reset { if reset {
cMixParams.IdentityPreimage = preimage.GenerateRequest(recipient)
} else {
cMixParams.IdentityPreimage = preimage.GenerateReset(recipient) cMixParams.IdentityPreimage = preimage.GenerateReset(recipient)
} else {
cMixParams.IdentityPreimage = preimage.GenerateRequest(recipient)
} }
cMixParams.DebugTag = "auth.Request" cMixParams.DebugTag = "auth.Request"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment