MOD: docs updated
This commit is contained in:
parent
7177699bed
commit
02c333071e
|
@ -0,0 +1,11 @@
|
||||||
|
==============
|
||||||
|
Flutter Plugin
|
||||||
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
* FLUTTER
|
||||||
|
- https://flutter.dev/docs/development/packages-and-plugins/developing-packages
|
||||||
|
* Good Example
|
||||||
|
- https://medium.com/flutter-io/writing-a-good-flutter-plugin-1a561b986c9c
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,8 @@ CCC Agile
|
||||||
|
|
||||||
WORKING
|
WORKING
|
||||||
=======
|
=======
|
||||||
* NC: add more JNI crypto features: SHA, RSA, CHACHA
|
* NC: create flutter plugin
|
||||||
|
* NC: add more JNI crypto features: CHACHA, Etc...
|
||||||
* UI: flutter, add new screens
|
* UI: flutter, add new screens
|
||||||
- adding encrypt screen
|
- adding encrypt screen
|
||||||
* l@@k at Android Weekly emails
|
* l@@k at Android Weekly emails
|
||||||
|
@ -41,7 +42,6 @@ Tasks
|
||||||
|
|
||||||
Milestones
|
Milestones
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
|
|
||||||
* normalizedcrypto
|
* normalizedcrypto
|
||||||
- maybe wrap nextcrypto with a *VERY* simple API
|
- maybe wrap nextcrypto with a *VERY* simple API
|
||||||
- new StrongestCrypt() (post-quantum, maybe even double-wrap)
|
- new StrongestCrypt() (post-quantum, maybe even double-wrap)
|
||||||
|
@ -53,7 +53,7 @@ Milestones
|
||||||
|
|
||||||
COMPLETED
|
COMPLETED
|
||||||
=========
|
=========
|
||||||
|
* NC: add more JNI crypto features: SHA, RSA
|
||||||
* TEST: add test code for JNI calls
|
* TEST: add test code for JNI calls
|
||||||
- tested AES, everything else should work accordingly
|
- tested AES, everything else should work accordingly
|
||||||
* combine wolfssl-lib + wolfssl-jni == ccc-ndk-jni (not ccc-jni which would be for java)
|
* combine wolfssl-lib + wolfssl-jni == ccc-ndk-jni (not ccc-jni which would be for java)
|
||||||
|
|
|
@ -4,16 +4,12 @@ Weekly Progress
|
||||||
|
|
||||||
WORKING
|
WORKING
|
||||||
-------
|
-------
|
||||||
|
|
||||||
* changed from SHARED to STATIC and now build stops working
|
* changed from SHARED to STATIC and now build stops working
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
COMPLETED
|
COMPLETED
|
||||||
---------
|
---------
|
||||||
|
|
||||||
* build static lib (.a)
|
* build static lib (.a)
|
||||||
- this had the result of putting the library files at ./dist/lib/<ARCH> instead of the
|
- this had the result of putting the library files at ./dist/lib/<ARCH> instead of the
|
||||||
default location of ./build/intermediates/cmake/debug/obj/<ARCH> and
|
default location of ./build/intermediates/cmake/debug/obj/<ARCH> and
|
||||||
|
@ -28,26 +24,21 @@ COMPLETED
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ISSUES
|
ISSUES
|
||||||
------
|
------
|
||||||
|
|
||||||
* changed from SHARED to STATIC and now build stops working
|
* changed from SHARED to STATIC and now build stops working
|
||||||
- changed back to SHARED, cleaned, build works!!!
|
- changed back to SHARED, cleaned, build works!!!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
nc-wc-ndk_MERGE
|
nc-wc-ndk_MERGE
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
* looks like both wolfssl library and jni library were compiling
|
* looks like both wolfssl library and jni library were compiling
|
||||||
- wolfssl is a static lib (.a)
|
- wolfssl is a static lib (.a)
|
||||||
- jni is a shared lib (.so)
|
- jni is a shared lib (.so)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
MISC
|
MISC
|
||||||
====
|
====
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ Weekly Progress
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
=======
|
|
||||||
WORKING
|
WORKING
|
||||||
=======
|
=======
|
||||||
* UI: Activity: plaintext, encrypt
|
* UI: Activity: plaintext, encrypt
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
===============
|
||||||
|
Weekly Progress
|
||||||
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
WORKING
|
||||||
|
=======
|
||||||
|
* create flutter plugin for android
|
||||||
|
* NC: add more JNI crypto features: CHACHA, Etc...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ISSUES
|
||||||
|
======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
NOTES
|
||||||
|
=====
|
||||||
|
|
||||||
|
|
||||||
|
"Next Crypto"
|
||||||
|
* provides a wrapper around MULTIPLE cipher libraries (WolfSSL, TLSmbed, PolarSSL)
|
||||||
|
* allows for custom personal modified ciphers
|
||||||
|
|
||||||
|
"Copius Cipher Chain"
|
||||||
|
* will chain multiple ciphers by interations or time, using a deterministic pattern derived from a combination "54321"
|
||||||
|
* last iteration should be a custom cipher
|
||||||
|
|
Loading…
Reference in New Issue