2
0

Remove plist dependency, fix length bug, import ciphers.plist.

[REMOVED]   Java code no longer depends on ciphers.plist and net.sf.plist.
[ADDED]     Java code now explicitly defines the algorithm's templates.
[FIXED]     Java code now properly counts the site name and user name's byte length.
[FIXED]     Java code now explicitly uses 32-bit integers.
This commit is contained in:
Maarten Billemont
2014-12-03 00:42:19 -05:00
parent ae08cb62c5
commit a82ce7310d
12 changed files with 380 additions and 241 deletions

View File

@@ -184,7 +184,7 @@ public class EmergencyActivity extends Activity {
@Override
public void run() {
try {
final String sitePassword = masterKeyFuture.get().encode( siteName, type, counter );
final String sitePassword = masterKeyFuture.get().encode( siteName, type, counter, variant, context );
runOnUiThread( new Runnable() {
@Override