From 21fa702dbd4a65d8e39d0fb882cced37ec14f3b1 Mon Sep 17 00:00:00 2001 From: JohnE Date: Wed, 6 Mar 2019 13:51:33 -0800 Subject: [PATCH] MOD: rebased and cleaned up --- docs/dev_dart.rst | 14 ++++++++++++++ docs/weekly_2019-03-01.rst | 7 +++++++ 2 files changed, 21 insertions(+) create mode 100644 docs/dev_dart.rst diff --git a/docs/dev_dart.rst b/docs/dev_dart.rst new file mode 100644 index 0000000..c837dd4 --- /dev/null +++ b/docs/dev_dart.rst @@ -0,0 +1,14 @@ +==== +Dart +==== + + + +* Dart Naming Convention + - "_FileScopeNamingConvention" + - "_" or "__" used in a place that the parameter is NOT being used + + + + + diff --git a/docs/weekly_2019-03-01.rst b/docs/weekly_2019-03-01.rst index 54e2a5a..c48d0aa 100644 --- a/docs/weekly_2019-03-01.rst +++ b/docs/weekly_2019-03-01.rst @@ -32,6 +32,13 @@ The following describes how the CCC library will be used. - this allows a specific pattern of ciphers to be set - Ccc_enc( CipherPattern pattern, Password pass, Message msg ) +* EasyCipher + - this allows anyone to use the library and expect the library to know the best, + more powerful cipher; fastest cipher that is secure; most secure cipher + - Ccc_enc ( EasyCipher cipher, Password pass, Message msg ) + - EasyCipher: ( BEST, FAST, ... ) + + NOTES