about summary refs log tree commit diff stats
path: root/src/omemo/store.c
Commit message (Expand)AuthorAgeFilesLines
* Apply coding styleMichael Vetter2020-07-071-95/+92
* Revert "Apply coding style"Michael Vetter2020-07-071-92/+95
* Apply coding styleMichael Vetter2020-07-071-95/+92
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Fix memleak in save_identity()Michael Vetter2019-07-231-1/+1
* Dont use not needed strdup() in save_identity()Michael Vetter2019-07-231-1/+1
* Fix various OMEMO memleaksPaul Fariello2019-07-101-1/+10
* Mark messages received from a session as trustedPaul Fariello2019-06-251-4/+9
* Add prof_message_t to wrap all message attributesPaul Fariello2019-06-201-1/+1
* Add trusted state after OMEMO decryptionPaul Fariello2019-06-201-5/+7
* Decrypt all incoming OMEMO msgPaul Fariello2019-06-201-1/+15
* Add copyright to omemo codeMichael Vetter2019-06-171-0/+33
* Remove OMEMO session when untrusting a fingerprintPaul Fariello2019-06-071-1/+8
* Fix issue with first encrypted messagePaul Fariello2019-04-101-1/+5
* Rework trusted fingerprint storagePaul Fariello2019-04-101-8/+17
* Permanently store pre keysPaul Fariello2019-04-101-2/+41
* Add support for disconnect in OMEMOPaul Fariello2019-04-101-3/+13
* Don't trust unknown identity keysPaul Fariello2019-04-101-4/+10
* Add support for libsignal-protocol-c 2.3.2Paul Fariello2019-04-101-0/+15
* Add OMEMO session long term storagePaul Fariello2019-04-101-0/+8
* Add support for encrypted carbonPaul Fariello2019-04-101-12/+32
* Add OMEMO message encryption and decryptionPaul Fariello2019-04-101-4/+8
* Add signal store backend and OMEMO start commandPaul Fariello2019-04-101-0/+267
class='oid'>c84640b1 ^
7e9c6925 ^



3076bab4 ^
a55bbd06 ^
7284d503 ^

88be3dbc ^
7e9c6925 ^







7e9c6925 ^





88be3dbc ^
07d35c4a ^














1848b18f ^

a55bbd06 ^

a55bbd06 ^

c84640b1 ^
07d35c4a ^
dcfca05e ^

b38e5819 ^
6673e1fc ^
7e9c6925 ^
dcfca05e ^

b38e5819 ^
6673e1fc ^
7e9c6925 ^
b38e5819 ^

6673e1fc ^
a55bbd06 ^
7e9c6925 ^
e853b94e ^
7da71d03 ^
7e9c6925 ^
b38e5819 ^
6673e1fc ^
a55bbd06 ^
dcfca05e ^
07d35c4a ^
a55bbd06 ^


7e9c6925 ^




88be3dbc ^
a55bbd06 ^




7e9c6925 ^
a55bbd06 ^
6f5d7864 ^
a55bbd06 ^
7e9c6925 ^
a55bbd06 ^
7284d503 ^
1848b18f ^
88be3dbc ^
1848b18f ^









1848b18f ^


a55bbd06 ^

a55bbd06 ^

c84640b1 ^
dcfca05e ^

6673e1fc ^
7e9c6925 ^
dcfca05e ^

6673e1fc ^
7e9c6925 ^
6673e1fc ^
a55bbd06 ^
6673e1fc ^
a55bbd06 ^

dcfca05e ^
a55bbd06 ^

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