Skip to content
Snippets Groups Projects
Commit 88632513 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Get both sides to the point where the ownership proof is verified and they are...

Get both sides to the point where the ownership proof is verified and they are adding fingerprints for each other. Callback is still not quite working
parent fd56cea5
No related branches found
No related tags found
3 merge requests!510Release,!207WIP: Client Restructure,!203Symmetric broadcast
......@@ -98,8 +98,8 @@ func (s *state) confirm(partner contact.Contact, serviceTag string) (
baseFmt.SetPubKey(dhPub)
jww.TRACE.Printf("SendConfirm PARTNERPUBKEY: %v",
partner.DhPubKey.Bytes())
jww.TRACE.Printf("SendConfirm MYPUBKEY: %v", dhPub.Bytes())
partner.DhPubKey.TextVerbose(16, 0))
jww.TRACE.Printf("SendConfirm MYPUBKEY: %v", dhPub.TextVerbose(16, 0))
jww.TRACE.Printf("SendConfirm ECRPAYLOAD: %v", baseFmt.GetEcrPayload())
jww.TRACE.Printf("SendConfirm MAC: %v", mac)
......
......@@ -36,9 +36,11 @@ func (rcs *receivedConfirmService) Process(msg format.Message,
return
}
jww.TRACE.Printf("processing confirm: \n\t MYPUBKEY: %s "+
"\n\t PARTNERPUBKEY: %s \n\t ECRPAYLOAD: %s \n\t MAC: %s",
jww.TRACE.Printf("processing confirm: \n\t MYHISTORICALPUBKEY: %s\n\t"+
"MYPUBKEY: %s\n\t PARTNERPUBKEY: %s \n\t "+
"ECRPAYLOAD: %s \n\t MAC: %s",
state.e2e.GetHistoricalDHPubkey().TextVerbose(16, 0),
rcs.SentRequest.GetMyPubKey().TextVerbose(16, 0),
partnerPubKey.TextVerbose(16, 0),
base64.StdEncoding.EncodeToString(baseFmt.data),
base64.StdEncoding.EncodeToString(msg.GetMac()))
......@@ -79,7 +81,7 @@ func (rcs *receivedConfirmService) Process(msg format.Message,
// check the ownership proof, this verifies the respondent owns the
// initial identity
if !cAuth.VerifyOwnershipProof(state.e2e.GetHistoricalDHPrivkey(),
if !cAuth.VerifyOwnershipProof(rcs.SentRequest.GetMyPrivKey(),
rcs.GetPartnerHistoricalPubKey(),
state.e2e.GetGroup(), ecrFmt.GetOwnership()) {
jww.WARN.Printf("Failed authenticate identity for auth "+
......
......@@ -65,7 +65,7 @@ func (f *FingerprintsManager) pop(clientID *id.ID,
// identity in the session
func (f *FingerprintsManager) AddFingerprint(clientID *id.ID,
fingerprint format.Fingerprint, mp Processor) error {
jww.INFO.Printf("AddFingerprint: %s", fingerprint)
jww.TRACE.Printf("AddFingerprint: %s", fingerprint)
f.Lock()
defer f.Unlock()
......
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