MOD: rebased and cleaned up

This commit is contained in:
JohnE 2019-03-06 13:51:33 -08:00
parent d2109719fd
commit 774609d8ec
2 changed files with 57 additions and 42 deletions

View File

@ -2,11 +2,36 @@
Weekly Progress 2019-03-01
==========================
WORKING
=======
* adding crypto functionality
- adding tests
* NC: test more JNI crypto features: RSA, CHACHA, AES modes
* UI: flutter
- add combo spinner
- adding basic encrypt screen
* using local branch "ciphers" for updates to add more ciphers
* local branches "merg" and "sha" are old, DELETE them soon
Cipher Combo API DESIGN
=======================
The following describes how the CCC library will be used.
* CipherCombo
- this allows the library to encrypt with a deterministic pattern such that
any desperate combo will work interchangably
- Ccc_enc( CipherCombo combo, Password pass, Message msg )
* Cipher
- this allows the library to encrypt with a single cipher
- Ccc_enc( Cipher cipher, Password pass, Message msg )
* CipherPattern
- this allows a specific pattern of ciphers to be set
- Ccc_enc( CipherPattern pattern, Password pass, Message msg )
NOTES
@ -17,6 +42,14 @@ NOTES
COMPLETED
=========
* NC: ShaTest.java works with .aar library!!
* NC: updated the compile process, new CFlags!! added all ciphers!! (file: build.gradle)
- library now supports ALL ciphers
- also added support to generate keys (pub/pvt)
@ -26,12 +59,15 @@ ISSUES
MakeRsaKey : Feature not compiled in
------------------------------------
* fix this by adding compile CFlag '-DWOLFSSL_KEY_GEN'
::
MakeRsaKey()
https://www.wolfssl.com/doxygen/group__RSA.html#ga3f89eea8d56ae352730ffd49ec2fd68e
#ifdef WOLFSSL_KEY_GEN
...
E/AndroidRuntime: FATAL EXCEPTION: main
Process: io.malloc.ccc.android.mytest, PID: 24791

View File

@ -1,21 +0,0 @@
===============
Weekly Progress
===============
WORKING
=======
ISSUES
======
NOTES
=====