Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OTRv4
otrv4_reference_design
Commits
faa304d6
Commit
faa304d6
authored
Nov 23, 2016
by
Fan Jiang
Browse files
follow the latest spec
parent
a265b982
Changes
1
Hide whitespace changes
Inline
Side-by-side
double_ratchet.go
View file @
faa304d6
package
main
import
(
"bytes"
"fmt"
"golang.org/x/crypto/sha3"
...
...
@@ -8,31 +9,40 @@ import (
"github.com/twstrike/ed448"
)
const
(
Q
=
iota
P1
P2
D
)
type
Msg
struct
{
mtype
int
sender
string
rid
,
mid
int
dh
pubkey
}
var
c
=
ed448
.
NewCurve
()
var
NULLSEC
=
seckey
{}
type
seckey
[
144
]
byte
type
pubkey
[
56
]
byte
type
key
[]
byte
type
Entity
struct
{
name
string
our_dh_pub
,
their_dh
pubkey
our_dh_priv
seckey
R
[]
key
Ca
,
Cb
[]
key
rid
,
j
,
k
int
initiator
bool
name
string
our_dh_pub
,
prev_our_dh_pub
,
their_dh
pubkey
our_dh_priv
,
prev_our_dh_priv
seckey
R
[]
key
Ca
,
Cb
[]
key
rid
,
j
,
k
int
initiator
bool
}
func
(
e
*
Entity
)
send
()
Msg
{
func
(
e
*
Entity
)
send
Data
()
Msg
{
var
cj
key
if
e
.
j
==
0
&&
!
(
e
.
rid
==
0
&&
!
e
.
initiator
)
{
if
e
.
j
==
0
{
fmt
.
Println
()
fmt
.
Printf
(
"%s
\t
Ratcheting...
\n
"
,
e
.
name
)
e
.
our_dh_priv
,
e
.
our_dh_pub
,
_
=
c
.
GenerateKeys
()
...
...
@@ -40,7 +50,7 @@ func (e *Entity) send() Msg {
secret
:=
c
.
ComputeSecret
(
e
.
our_dh_priv
,
e
.
their_dh
)
e
.
derive
(
secret
[
:
])
}
toSend
:=
Msg
{
e
.
name
,
e
.
rid
,
e
.
j
,
e
.
our_dh_pub
}
toSend
:=
Msg
{
D
,
e
.
name
,
e
.
rid
,
e
.
j
,
e
.
our_dh_pub
}
cj
=
e
.
retriveChainkey
(
e
.
rid
,
e
.
j
)
e
.
j
+=
1
fmt
.
Printf
(
"%s
\t
sending: %v
\n
"
,
e
.
name
,
toSend
)
...
...
@@ -51,6 +61,45 @@ func (e *Entity) send() Msg {
func
(
e
*
Entity
)
receive
(
m
Msg
)
{
fmt
.
Println
()
fmt
.
Printf
(
"%s
\t
receive: %v
\n
"
,
e
.
name
,
m
)
switch
m
.
mtype
{
case
D
:
e
.
receiveData
(
m
)
break
case
Q
:
break
case
P1
:
e
.
receiveP1
(
m
)
break
case
P2
:
e
.
receiveP2
(
m
)
break
}
}
func
(
e
*
Entity
)
receiveP1
(
m
Msg
)
{
if
bytes
.
Compare
(
e
.
our_dh_priv
[
:
],
NULLSEC
[
:
])
==
1
{
e
.
prev_our_dh_priv
=
e
.
our_dh_priv
e
.
prev_our_dh_pub
=
e
.
our_dh_pub
}
e
.
our_dh_priv
,
e
.
our_dh_pub
,
_
=
c
.
GenerateKeys
()
e
.
their_dh
=
m
.
dh
e
.
rid
=
e
.
rid
+
1
//TODO: should we keep this?
e
.
initiator
=
false
secret
:=
c
.
ComputeSecret
(
e
.
our_dh_priv
,
e
.
their_dh
)
e
.
derive
(
secret
[
:
])
}
func
(
e
*
Entity
)
receiveP2
(
m
Msg
)
{
e
.
their_dh
=
m
.
dh
e
.
rid
=
e
.
rid
+
1
secret
:=
c
.
ComputeSecret
(
e
.
our_dh_priv
,
e
.
their_dh
)
e
.
derive
(
secret
[
:
])
}
func
(
e
*
Entity
)
receiveData
(
m
Msg
)
{
ck
:=
make
([]
byte
,
64
)
if
m
.
rid
==
e
.
rid
+
1
{
fmt
.
Printf
(
"%s
\t
Follow Ratcheting...
\n
"
,
e
.
name
)
...
...
@@ -101,37 +150,68 @@ func (e *Entity) derive(secret []byte) {
e
.
Cb
=
append
(
e
.
Cb
,
cb
)
}
func
(
e
*
Entity
)
query
()
Msg
{
toSend
:=
Msg
{
mtype
:
Q
,
sender
:
e
.
name
}
fmt
.
Printf
(
"%s
\t
sending: %v
\n
"
,
e
.
name
,
toSend
)
return
toSend
}
func
(
e
*
Entity
)
sendP1
()
Msg
{
if
bytes
.
Compare
(
e
.
our_dh_priv
[
:
],
NULLSEC
[
:
])
==
1
{
e
.
prev_our_dh_priv
=
e
.
our_dh_priv
e
.
prev_our_dh_pub
=
e
.
our_dh_pub
}
e
.
our_dh_priv
,
e
.
our_dh_pub
,
_
=
c
.
GenerateKeys
()
e
.
j
=
1
e
.
rid
=
e
.
rid
+
1
//TODO: should we keep this?
e
.
initiator
=
true
toSend
:=
Msg
{
P1
,
e
.
name
,
-
1
,
-
1
,
e
.
our_dh_pub
}
return
toSend
}
func
(
e
*
Entity
)
sendP2
()
Msg
{
e
.
j
=
0
e
.
rid
=
e
.
rid
+
1
toSend
:=
Msg
{
P2
,
e
.
name
,
-
1
,
-
1
,
e
.
our_dh_pub
}
return
toSend
}
func
main
()
{
a
,
b
:=
initialize
()
a
.
receive
(
b
.
send
())
b
.
receive
(
a
.
send
())
m1
:=
a
.
send
()
m2
:=
b
.
send
()
m3
:=
a
.
send
()
b
.
receive
(
a
.
query
())
a
.
receive
(
b
.
sendP1
())
b
.
receive
(
a
.
sendP2
())
b
.
receive
(
a
.
sendData
())
b
.
receive
(
a
.
sendData
())
b
.
receive
(
a
.
sendData
())
b
.
receive
(
a
.
sendData
())
b
.
receive
(
a
.
sendData
())
a
.
receive
(
b
.
sendData
())
a
.
receive
(
b
.
sendData
())
a
.
receive
(
b
.
sendData
())
a
.
receive
(
b
.
sendData
())
a
.
receive
(
b
.
sendData
())
m1
:=
a
.
sendData
()
m2
:=
b
.
sendData
()
m3
:=
a
.
sendData
()
b
.
receive
(
m1
)
a
.
receive
(
m2
)
b
.
receive
(
m3
)
a
.
receive
(
b
.
send
())
b
.
receive
(
a
.
send
())
a
.
receive
(
b
.
send
Data
())
b
.
receive
(
a
.
send
Data
())
}
func
initialize
()
(
alice
,
bob
Entity
)
{
alice
.
our_dh_priv
,
alice
.
our_dh_pub
,
_
=
c
.
GenerateKeys
()
bob
.
our_dh_priv
,
bob
.
our_dh_pub
,
_
=
c
.
GenerateKeys
()
alice
.
their_dh
=
bob
.
our_dh_pub
bob
.
their_dh
=
alice
.
our_dh_pub
secret
:=
c
.
ComputeSecret
(
alice
.
our_dh_priv
,
alice
.
their_dh
)
alice
.
name
=
"Alice"
alice
.
initiator
=
true
alice
.
derive
(
secret
[
:
])
alice
.
rid
=
-
2
bob
.
name
=
"Bob"
bob
.
initiator
=
false
bob
.
derive
(
secret
[
:
])
bob
.
rid
=
-
2
return
alice
,
bob
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment