Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop ratchet pqc #147

Merged
merged 27 commits into from
Apr 13, 2020
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2b02522
Adding pqc to double ratchet #1
SanjoDeundiak Mar 26, 2020
fb24047
Adding pqc to double ratchet #2
SanjoDeundiak Mar 30, 2020
3afa7d5
Adding pqc to double ratchet #3
SanjoDeundiak Mar 31, 2020
c45caf7
Finished implementing double ratchet + serialization
SanjoDeundiak Apr 2, 2020
e280325
Enabling tests #1. Fixing memory leaks
SanjoDeundiak Apr 3, 2020
ffe7de1
Completed xxdh tests
SanjoDeundiak Apr 6, 2020
4e2b92f
Finished message tests
SanjoDeundiak Apr 6, 2020
74660c8
Generated wrappers
SanjoDeundiak Apr 6, 2020
2270182
Tests + Refactoring + Wrappers update
SanjoDeundiak Apr 7, 2020
6c70c97
Fixed vscr_ratchet_key_utils
SanjoDeundiak Apr 7, 2020
95f6ded
Fixed group session test
SanjoDeundiak Apr 7, 2020
38685bc
Merge remote-tracking branch 'origin/develop' into develop-ratchet-pqc
SanjoDeundiak Apr 7, 2020
dd6a8ad
Fixed memory leak
SanjoDeundiak Apr 7, 2020
b860c5a
Fixed wrappers. Fixed build for iOS
SanjoDeundiak Apr 7, 2020
72fc2ac
Code format (codegen)
SergeySeroshtan Apr 10, 2020
97d7e08
Remove methods with a scope="private" from the Go wrapper
SergeySeroshtan Apr 10, 2020
a521ca3
Remove methods with a scope="private" from the Java wrapper
SergeySeroshtan Apr 10, 2020
9850ee4
Fixed session init bug
SanjoDeundiak Apr 10, 2020
cd3a9d3
Fixed session key ids copy&serialization
SanjoDeundiak Apr 10, 2020
ef87e88
Use wrappers helper method where suitable (codegen, swift)
SergeySeroshtan Apr 10, 2020
27fccf0
Remove methods with a scope="private" from the Python wrapper
SergeySeroshtan Apr 10, 2020
b5a97e1
Remove methods with a scope="private" from the Swift wrapper
SergeySeroshtan Apr 10, 2020
fcc759d
Fixing java tests
SanjoDeundiak Apr 10, 2020
00e9361
Fixing java tests
SanjoDeundiak Apr 10, 2020
ba2409e
Minimize Ratchet tests (java, android)
SergeySeroshtan Apr 10, 2020
1ad822e
Fixing android tests
SergeySeroshtan Apr 10, 2020
1cfc111
Fixing android tests
SergeySeroshtan Apr 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixing android tests
  • Loading branch information
SergeySeroshtan committed Apr 13, 2020
commit 1cfc111bc232caed8d2b81716c09fbc83e63d43e
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,14 @@

import android.support.test.runner.AndroidJUnit4;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

@RunWith(AndroidJUnit4.class)
public class RatchetMessageTest {

Expand Down