Skip to content

Commit

Permalink
Removing extraneous output from RecoverCredentials
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlewi committed Sep 28, 2023
1 parent 6683405 commit f5a4039
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions draft-irtf-cfrg-opaque.md
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ Output:
- export_key, an additional client key.

def GenerateKE3(client_identity, server_identity, ke2):
(client_private_key, cleartext_credentials, server_public_key, export_key) =
(client_private_key, cleartext_credentials, export_key) =
RecoverCredentials(state.password, state.blind, ke2.credential_response,
server_identity, client_identity)
(ke3, session_key) =
Expand Down Expand Up @@ -1391,7 +1391,6 @@ Input:
Output:
- client_private_key, the encoded client private key for the AKE protocol.
- cleartext_credentials, a CleartextCredentials structure.
- server_public_key, the public key of the server.
- export_key, an additional client key.

Exceptions:
Expand All @@ -1415,7 +1414,7 @@ def RecoverCredentials(password, blind, response,
Recover(randomized_password, server_public_key, envelope,
server_identity, client_identity)

return (client_private_key, cleartext_credentials, server_public_key, export_key)
return (client_private_key, cleartext_credentials, export_key)
~~~

## 3DH Protocol {#protocol-3dh}
Expand Down

0 comments on commit f5a4039

Please sign in to comment.