This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from signal-golang/textsecure
-
Notifications
You must be signed in to change notification settings - Fork 5
/
crypto.go
142 lines (118 loc) · 3.56 KB
/
crypto.go
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
// Copyright (c) 2014 Canonical Ltd.
// Licensed under the GPLv3, see the COPYING file for details.
package textsecure
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/hmac"
"crypto/rand"
"crypto/sha1"
"crypto/sha256"
"encoding/binary"
"errors"
"fmt"
"io"
"github.com/nanu-c/textsecure/axolotl"
"github.com/nanu-c/textsecure/protobuf"
"github.com/golang/protobuf/proto"
"golang.org/x/crypto/curve25519"
)
// randBytes returns a sequence of random bytes from the CSPRNG
func randBytes(data []byte) {
if _, err := io.ReadFull(rand.Reader, data); err != nil {
panic(err)
}
}
// randUint32 returns a random 32bit uint from the CSPRNG
func randUint32() uint32 {
b := make([]byte, 4)
_, err := rand.Read(b)
if err != nil {
panic(err)
}
return binary.BigEndian.Uint32(b)
}
// appendMAC returns the given message with a HMAC-SHA256 MAC appended
func appendMAC(key, b []byte) []byte {
m := hmac.New(sha256.New, key)
m.Write(b)
return m.Sum(b)
}
// verifyMAC verifies a HMAC-SHA256 MAC on a message
func verifyMAC(key, b, mac []byte) bool {
m := hmac.New(sha256.New, key)
m.Write(b)
return hmac.Equal(m.Sum(nil), mac)
}
// telToToken calculates a truncated SHA1 hash of a phone number, to be used for contact discovery
func telToToken(tel string) string {
s := sha1.Sum([]byte(tel))
return base64EncWithoutPadding(s[:10])
}
// aesEncrypt encrypts the given plaintext under the given key in AES-CBC mode
func aesEncrypt(key, plaintext []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
pad := aes.BlockSize - len(plaintext)%aes.BlockSize
plaintext = append(plaintext, bytes.Repeat([]byte{byte(pad)}, pad)...)
ciphertext := make([]byte, len(plaintext))
iv := make([]byte, 16)
randBytes(iv)
mode := cipher.NewCBCEncrypter(block, iv)
mode.CryptBlocks(ciphertext, plaintext)
return append(iv, ciphertext...), nil
}
// aesDecrypt decrypts the given ciphertext under the given key in AES-CBC mode
func aesDecrypt(key, ciphertext []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
if len(ciphertext)%aes.BlockSize != 0 {
return nil, errors.New("ciphertext not multiple of AES blocksize")
}
iv := ciphertext[:aes.BlockSize]
mode := cipher.NewCBCDecrypter(block, iv)
mode.CryptBlocks(ciphertext, ciphertext)
pad := ciphertext[len(ciphertext)-1]
if pad > aes.BlockSize {
return nil, fmt.Errorf("pad value (%d) larger than AES blocksize (%d)", pad, aes.BlockSize)
}
return ciphertext[aes.BlockSize : len(ciphertext)-int(pad)], nil
}
// ProvisioningCipher
func provisioningCipher(pm *signalservice.ProvisionMessage, theirPublicKey *axolotl.ECPublicKey) ([]byte, error) {
ourKeyPair := axolotl.GenerateIdentityKeyPair()
version := []byte{0x01}
var sharedKey [32]byte
curve25519.ScalarMult(&sharedKey, ourKeyPair.PrivateKey.Key(), theirPublicKey.Key())
derivedSecret, err := axolotl.DeriveSecrets(sharedKey[:], nil, []byte("TextSecure Provisioning Message"), 64)
if err != nil {
return nil, err
}
aesKey := derivedSecret[:32]
macKey := derivedSecret[32:]
message, err := proto.Marshal(pm)
if err != nil {
return nil, err
}
ciphertext, err := aesEncrypt(aesKey, message)
if err != nil {
return nil, err
}
m := hmac.New(sha256.New, macKey)
m.Write(append(version[:], ciphertext[:]...))
mac := m.Sum(nil)
body := []byte{}
body = append(body, version[:]...)
body = append(body, ciphertext[:]...)
body = append(body, mac[:]...)
pe := &signalservice.ProvisionEnvelope{
PublicKey: ourKeyPair.PublicKey.Serialize(),
Body: body,
}
return proto.Marshal(pe)
}