MOD: rebased and cleaned up

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

14
docs/dev_dart.rst Normal file
View File

@ -0,0 +1,14 @@
====
Dart
====
* Dart Naming Convention
- "_FileScopeNamingConvention"
- "_" or "__" used in a place that the parameter is NOT being used

View File

@ -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