1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
package otr3
import (
"crypto/rand"
"io"
"math/big"
)
type fixedRandReader struct {
data []string
at int
}
func fixedRand(data []string) io.Reader {
return &fixedRandReader{data, 0}
}
func (frr *fixedRandReader) Read(p []byte) (n int, err error) {
if frr.at < len(frr.data) {
plainBytes := bytesFromHex(frr.data[frr.at])
frr.at++
n = copy(p, plainBytes)
return
}
return 0, io.EOF
}
func fixtureConversation() *Conversation {
return fixtureConversationWithVersion(otrV3{})
}
func fixtureConversationV2() *Conversation {
return fixtureConversationWithVersion(otrV2{})
}
func fixtureConversationWithVersion(v otrVersion) *Conversation {
return newConversation(v, fixtureRand())
}
func fixtureDHCommitMsg() []byte {
c := fixtureConversation()
c.theirInstanceTag = 0
msg, _ := c.dhCommitMessage()
msg, _ = c.wrapMessageHeader(msgTypeDHCommit, msg)
return msg
}
func fixtureDHCommitMsgBody() []byte {
return fixtureDHCommitMsg()[otrv3HeaderLen:]
}
func fixtureDHCommitMsgV2() []byte {
c := fixtureConversationV2()
msg, _ := c.dhCommitMessage()
msg, _ = c.wrapMessageHeader(msgTypeDHCommit, msg)
return msg
}
func fixtureDHKeyMsg(v otrVersion) []byte {
c := fixtureConversationWithVersion(v)
c.ourCurrentKey = alicePrivateKey
msg, _ := c.dhKeyMessage()
msg, _ = c.wrapMessageHeader(msgTypeDHKey, msg)
return msg
}
func headLen(v otrVersion) int {
val := otrV2{}
if val == v {
return otrv2HeaderLen
}
return otrv3HeaderLen
}
func fixtureDHKeyMsgBody(v otrVersion) []byte {
return fixtureDHKeyMsg(v)[headLen(v):]
}
func fixtureRevealSigMsg(v otrVersion) []byte {
c := bobContextAtReceiveDHKey()
c.version = v
msg, _ := c.revealSigMessage()
msg, _ = c.wrapMessageHeader(msgTypeRevealSig, msg)
return msg
}
func fixtureRevealSigMsgBody(v otrVersion) []byte {
return fixtureRevealSigMsg(v)[headLen(v):]
}
func fixtureSigMsg(v otrVersion) []byte {
c := aliceContextAtReceiveRevealSig()
c.calcAKEKeys(c.calcDHSharedSecret())
c.version = v
msg, _ := c.sigMessage()
msg, _ = c.wrapMessageHeader(msgTypeSig, msg)
return msg
}
func bobContextAfterAKE() *Conversation {
c := newConversation(otrV3{}, fixtureRand())
c.keys.ourKeyID = 2
c.keys.ourCurrentDHKeys.pub = fixedGX()
c.keys.ourPreviousDHKeys.priv = fixedX()
c.keys.ourPreviousDHKeys.pub = fixedGX()
c.keys.theirKeyID = 1
c.keys.theirCurrentDHPubKey = fixedGY()
return c
}
func aliceContextAfterAKE() *Conversation {
c := newConversation(otrV3{}, fixtureRand())
c.keys.ourKeyID = 1
c.keys.ourCurrentDHKeys.priv = fixedY()
c.keys.ourCurrentDHKeys.pub = fixedGY()
c.keys.ourPreviousDHKeys.priv = fixedY()
c.keys.ourPreviousDHKeys.pub = fixedGY()
c.keys.theirKeyID = 1
c.keys.theirCurrentDHPubKey = fixedGX()
c.keys.ourKeyID = 2
return c
}
func bobContextAtAwaitingSig() *Conversation {
c := bobContextAtReceiveDHKey()
c.ake.keys.ourKeyID = 1
c.ake.keys.ourCurrentDHKeys.priv = fixedX()
c.ake.keys.ourCurrentDHKeys.pub = fixedGX()
c.ake.keys.theirKeyID = 1
c.ake.keys.theirCurrentDHPubKey = fixedGY()
c.version = otrV2{}
c.Policies.add(allowV2)
c.ake.state = authStateAwaitingSig{}
return c
}
func bobContextAtReceiveDHKey() *Conversation {
c := bobContextAtAwaitingDHKey()
c.ake.theirPublicValue = fixedGY() // stored at receiveDHKey
c.ake.sigKey.c = bytesFromHex("d942cc80b66503414c05e3752d9ba5c4")
c.ake.sigKey.m1 = bytesFromHex("b6254b8eab0ad98152949454d23c8c9b08e4e9cf423b27edc09b1975a76eb59c")
c.ake.sigKey.m2 = bytesFromHex("954be27015eeb0455250144d906e83e7d329c49581aea634c4189a3c981184f5")
return c
}
func bobContextAtAwaitingDHKey() *Conversation {
c := newConversation(otrV3{}, fixtureRand())
c.initAKE()
c.Policies.add(allowV3)
c.ake.state = authStateAwaitingDHKey{}
c.ourCurrentKey = bobPrivateKey
copy(c.ake.r[:], fixedr) // stored at sendDHCommit
c.setSecretExponent(fixedX()) // stored at sendDHCommit
return c
}
func aliceContextAtReceiveRevealSig() *Conversation {
c := aliceContextAtAwaitingRevealSig()
c.ake.theirPublicValue = fixedGX() // Alice decrypts encryptedGx using r
return c
}
func aliceContextAtAwaitingDHCommit() *Conversation {
c := newConversation(otrV2{}, fixtureRand())
c.initAKE()
c.Policies.add(allowV2)
c.ake.state = authStateNone{}
c.ourCurrentKey = alicePrivateKey
return c
}
func aliceContextAtAwaitingRevealSig() *Conversation {
c := newConversation(otrV2{}, fixtureRand())
c.initAKE()
c.Policies.add(allowV2)
c.ake.state = authStateAwaitingRevealSig{}
c.ourCurrentKey = alicePrivateKey
c.ake.xhashedGx = hashedFixedGX() //stored at receiveDHCommit
c.ake.encryptedGx = encryptedFixedGX() //stored at receiveDHCommit
c.setSecretExponent(fixedY()) //stored at sendDHKey
return c
}
//Alice generates a encrypted message to Bob
//Fixture data msg never rotates the receiver keys when the returned context is
//used before receiving the message
func fixtureDataMsg(plain plainDataMsg) ([]byte, keyManagementContext) {
var senderKeyID uint32 = 1
var recipientKeyID uint32 = 1
conv := newConversation(otrV3{}, rand.Reader)
//We use a combination of ourKeyId, theirKeyID, senderKeyID and recipientKeyID
//to make sure both sender and receiver will use the same DH session keys
receiverContext := keyManagementContext{
ourKeyID: senderKeyID + 1,
theirKeyID: recipientKeyID + 1,
ourCurrentDHKeys: dhKeyPair{
priv: fixedY(),
pub: fixedGY(),
},
ourPreviousDHKeys: dhKeyPair{
priv: fixedY(),
pub: fixedGY(),
},
theirCurrentDHPubKey: fixedGX(),
theirPreviousDHPubKey: fixedGX(),
}
c1 := receiverContext.counterHistory.findCounterFor(recipientKeyID, senderKeyID)
c1.theirKeyID = 1
keys := calculateDHSessionKeys(fixedX(), fixedGX(), fixedGY(), conv.version)
h, _ := conv.messageHeader(msgTypeData)
m := dataMsg{
senderKeyID: senderKeyID,
recipientKeyID: recipientKeyID,
y: fixedGY(), //this is alices current Pub
topHalfCtr: [8]byte{0, 0, 0, 0, 0, 0, 0, 2},
}
m.encryptedMsg = plain.encrypt(keys.sendingAESKey[:], m.topHalfCtr)
// fmt.Printf("sendingMACKey2: len: %d %X\n", len(keys.sendingMACKey), keys.sendingMACKey)
m.sign(keys.sendingMACKey, h, conv.version)
msg := append(h, m.serialize(conv.version)...)
return msg, receiverContext
}
//Alice decrypts a encrypted message from Bob, generated after receiving
//an encrypted message from Alice generated with fixtureDataMsg()
func fixtureDecryptDataMsg(encryptedDataMsg []byte) plainDataMsg {
_, pd, e := fixtureDecryptDataMsgBase(encryptedDataMsg)
if e != nil {
panic(e)
}
return pd
}
func fixtureDecryptDataMsgBase(encryptedDataMsg []byte) ([]byte, plainDataMsg, error) {
c := newConversation(otrV3{}, rand.Reader)
header, withoutHeader, err := c.parseMessageHeader(encryptedDataMsg)
if err != nil {
return nil, plainDataMsg{}, err
}
m := dataMsg{}
err = m.deserialize(withoutHeader, c.version)
if err != nil {
return nil, plainDataMsg{}, err
}
keys := calculateDHSessionKeys(fixedX(), fixedGX(), fixedGY(), c.version)
exp := plainDataMsg{}
err = m.checkSign(keys.receivingMACKey, header, c.version)
if err != nil {
return nil, plainDataMsg{}, err
}
exp.decrypt(keys.receivingAESKey[:], m.topHalfCtr, m.encryptedMsg)
return header, exp, nil
}
func fixedX() *big.Int {
return bnFromHex("bbcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd")
}
func fixedY() *big.Int {
return bnFromHex("abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd")
}
func fixedGX() *big.Int {
return bnFromHex("75dfab5a1eab059052d0ad881c4938d52669630d61833a367155d67d03a457f619683d0fa829781e974fd24f6865e8128a9312a167b77326a87dea032fc31784d05b18b9cbafebe162ae9b5369f8b0c5911cf1be757f45f2a674be5126a714a6366c28086b3c7088911dcc4e5fb1481ad70a5237b8e4a6aff4954c2ca6df338b9f08691e4c0defe12689b37d4df30ddef2687f789fcf623c5d0cf6f09b7e5e69f481d5fd1b24a77636fb676e6d733d129eb93e81189340233044766a36eb07d")
}
func fixedGY() *big.Int {
return bnFromHex("2cdacabb00e63d8949aa85f7e6a095b1ee81a60779e58f8938ff1a7ed1e651d954bd739162e699cc73b820728af53aae60a46d529620792ddf839c5d03d2d4e92137a535b27500e3b3d34d59d0cd460d1f386b5eb46a7404b15c1ef84840697d2d3d2405dcdda351014d24a8717f7b9c51f6c84de365fea634737ae18ba22253a8e15249d9beb2dded640c6c0d74e4f7e19161cf828ce3ffa9d425fb68c0fddcaa7cbe81a7a5c2c595cce69a255059d9e5c04b49fb15901c087e225da850ff27")
}
func hashedFixedGX() []byte {
return bytesFromHex("a3f2c4b9e3a7d1f565157ae7b0e71c721d59d3c79d39e5e4e8d08cb8464ff857")
}
func encryptedFixedGX() []byte {
return bytesFromHex("5dd6a5999be73a99b80bdb78194a125f3067bd79e69c648b76a068117a8c4d0f36f275305423a933541937145d85ab4618094cbafbe4db0c0081614c1ff0f516c3dc4f352e9c92f88e4883166f12324d82240a8f32874c3d6bc35acedb8d501aa0111937a4859f33aa9b43ec342d78c3a45a5939c1e58e6b4f02725c1922f3df8754d1e1ab7648f558e9043ad118e63603b3ba2d8cbfea99a481835e42e73e6cd6019840f4470b606e168b1cd4a1f401c3dc52525d79fa6b959a80d4e11f1ec3a7984cf9")
}
|