├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── crypto ├── blake2s.py ├── blake3.py ├── chacha20.py ├── chacha20_csprng.py ├── chachapoly1305.py ├── utils.py └── x25519.py └── demo ├── __main__.py ├── assets ├── IBM_100.png ├── IBM_101.png ├── IBM_102.png ├── IBM_103.png ├── IBM_104.png ├── IBM_105.png ├── IBM_106.png ├── IBM_107.png ├── IBM_108.png ├── IBM_109.png ├── IBM_110.png ├── IBM_111.png ├── IBM_112.png ├── IBM_113.png ├── IBM_114.png ├── IBM_115.png ├── IBM_116.png ├── IBM_117.png ├── IBM_118.png ├── IBM_119.png ├── IBM_120.png ├── IBM_121.png ├── IBM_122.png ├── IBM_123.png ├── IBM_124.png ├── IBM_125.png ├── IBM_32.png ├── IBM_33.png ├── IBM_34.png ├── IBM_35.png ├── IBM_36.png ├── IBM_37.png ├── IBM_38.png ├── IBM_39.png ├── IBM_40.png ├── IBM_41.png ├── IBM_42.png ├── IBM_43.png ├── IBM_44.png ├── IBM_45.png ├── IBM_46.png ├── IBM_47.png ├── IBM_48.png ├── IBM_49.png ├── IBM_50.png ├── IBM_51.png ├── IBM_52.png ├── IBM_53.png ├── IBM_54.png ├── IBM_55.png ├── IBM_56.png ├── IBM_57.png ├── IBM_58.png ├── IBM_59.png ├── IBM_60.png ├── IBM_61.png ├── IBM_62.png ├── IBM_63.png ├── IBM_64.png ├── IBM_65.png ├── IBM_66.png ├── IBM_67.png ├── IBM_68.png ├── IBM_69.png ├── IBM_70.png ├── IBM_71.png ├── IBM_72.png ├── IBM_73.png ├── IBM_74.png ├── IBM_75.png ├── IBM_76.png ├── IBM_77.png ├── IBM_78.png ├── IBM_79.png ├── IBM_80.png ├── IBM_81.png ├── IBM_82.png ├── IBM_83.png ├── IBM_84.png ├── IBM_85.png ├── IBM_86.png ├── IBM_87.png ├── IBM_88.png ├── IBM_89.png ├── IBM_90.png ├── IBM_91.png ├── IBM_92.png ├── IBM_93.png ├── IBM_94.png ├── IBM_95.png ├── IBM_96.png ├── IBM_97.png ├── IBM_98.png ├── IBM_99.png └── overlay.svg ├── chat.py ├── demo.py └── out └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/README.md -------------------------------------------------------------------------------- /crypto/blake2s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/blake2s.py -------------------------------------------------------------------------------- /crypto/blake3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/blake3.py -------------------------------------------------------------------------------- /crypto/chacha20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/chacha20.py -------------------------------------------------------------------------------- /crypto/chacha20_csprng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/chacha20_csprng.py -------------------------------------------------------------------------------- /crypto/chachapoly1305.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/chachapoly1305.py -------------------------------------------------------------------------------- /crypto/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/utils.py -------------------------------------------------------------------------------- /crypto/x25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/crypto/x25519.py -------------------------------------------------------------------------------- /demo/__main__.py: -------------------------------------------------------------------------------- 1 | from . import demo 2 | -------------------------------------------------------------------------------- /demo/assets/IBM_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_100.png -------------------------------------------------------------------------------- /demo/assets/IBM_101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_101.png -------------------------------------------------------------------------------- /demo/assets/IBM_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_102.png -------------------------------------------------------------------------------- /demo/assets/IBM_103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_103.png -------------------------------------------------------------------------------- /demo/assets/IBM_104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_104.png -------------------------------------------------------------------------------- /demo/assets/IBM_105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_105.png -------------------------------------------------------------------------------- /demo/assets/IBM_106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_106.png -------------------------------------------------------------------------------- /demo/assets/IBM_107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_107.png -------------------------------------------------------------------------------- /demo/assets/IBM_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_108.png -------------------------------------------------------------------------------- /demo/assets/IBM_109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_109.png -------------------------------------------------------------------------------- /demo/assets/IBM_110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_110.png -------------------------------------------------------------------------------- /demo/assets/IBM_111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_111.png -------------------------------------------------------------------------------- /demo/assets/IBM_112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_112.png -------------------------------------------------------------------------------- /demo/assets/IBM_113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_113.png -------------------------------------------------------------------------------- /demo/assets/IBM_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_114.png -------------------------------------------------------------------------------- /demo/assets/IBM_115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_115.png -------------------------------------------------------------------------------- /demo/assets/IBM_116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_116.png -------------------------------------------------------------------------------- /demo/assets/IBM_117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_117.png -------------------------------------------------------------------------------- /demo/assets/IBM_118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_118.png -------------------------------------------------------------------------------- /demo/assets/IBM_119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_119.png -------------------------------------------------------------------------------- /demo/assets/IBM_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_120.png -------------------------------------------------------------------------------- /demo/assets/IBM_121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_121.png -------------------------------------------------------------------------------- /demo/assets/IBM_122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_122.png -------------------------------------------------------------------------------- /demo/assets/IBM_123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_123.png -------------------------------------------------------------------------------- /demo/assets/IBM_124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_124.png -------------------------------------------------------------------------------- /demo/assets/IBM_125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_125.png -------------------------------------------------------------------------------- /demo/assets/IBM_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_32.png -------------------------------------------------------------------------------- /demo/assets/IBM_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_33.png -------------------------------------------------------------------------------- /demo/assets/IBM_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_34.png -------------------------------------------------------------------------------- /demo/assets/IBM_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_35.png -------------------------------------------------------------------------------- /demo/assets/IBM_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_36.png -------------------------------------------------------------------------------- /demo/assets/IBM_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_37.png -------------------------------------------------------------------------------- /demo/assets/IBM_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_38.png -------------------------------------------------------------------------------- /demo/assets/IBM_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_39.png -------------------------------------------------------------------------------- /demo/assets/IBM_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_40.png -------------------------------------------------------------------------------- /demo/assets/IBM_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_41.png -------------------------------------------------------------------------------- /demo/assets/IBM_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_42.png -------------------------------------------------------------------------------- /demo/assets/IBM_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_43.png -------------------------------------------------------------------------------- /demo/assets/IBM_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_44.png -------------------------------------------------------------------------------- /demo/assets/IBM_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_45.png -------------------------------------------------------------------------------- /demo/assets/IBM_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_46.png -------------------------------------------------------------------------------- /demo/assets/IBM_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_47.png -------------------------------------------------------------------------------- /demo/assets/IBM_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_48.png -------------------------------------------------------------------------------- /demo/assets/IBM_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_49.png -------------------------------------------------------------------------------- /demo/assets/IBM_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_50.png -------------------------------------------------------------------------------- /demo/assets/IBM_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_51.png -------------------------------------------------------------------------------- /demo/assets/IBM_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_52.png -------------------------------------------------------------------------------- /demo/assets/IBM_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_53.png -------------------------------------------------------------------------------- /demo/assets/IBM_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_54.png -------------------------------------------------------------------------------- /demo/assets/IBM_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_55.png -------------------------------------------------------------------------------- /demo/assets/IBM_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_56.png -------------------------------------------------------------------------------- /demo/assets/IBM_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_57.png -------------------------------------------------------------------------------- /demo/assets/IBM_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_58.png -------------------------------------------------------------------------------- /demo/assets/IBM_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_59.png -------------------------------------------------------------------------------- /demo/assets/IBM_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_60.png -------------------------------------------------------------------------------- /demo/assets/IBM_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_61.png -------------------------------------------------------------------------------- /demo/assets/IBM_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_62.png -------------------------------------------------------------------------------- /demo/assets/IBM_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_63.png -------------------------------------------------------------------------------- /demo/assets/IBM_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_64.png -------------------------------------------------------------------------------- /demo/assets/IBM_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_65.png -------------------------------------------------------------------------------- /demo/assets/IBM_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_66.png -------------------------------------------------------------------------------- /demo/assets/IBM_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_67.png -------------------------------------------------------------------------------- /demo/assets/IBM_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_68.png -------------------------------------------------------------------------------- /demo/assets/IBM_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_69.png -------------------------------------------------------------------------------- /demo/assets/IBM_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_70.png -------------------------------------------------------------------------------- /demo/assets/IBM_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_71.png -------------------------------------------------------------------------------- /demo/assets/IBM_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_72.png -------------------------------------------------------------------------------- /demo/assets/IBM_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_73.png -------------------------------------------------------------------------------- /demo/assets/IBM_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_74.png -------------------------------------------------------------------------------- /demo/assets/IBM_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_75.png -------------------------------------------------------------------------------- /demo/assets/IBM_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_76.png -------------------------------------------------------------------------------- /demo/assets/IBM_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_77.png -------------------------------------------------------------------------------- /demo/assets/IBM_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_78.png -------------------------------------------------------------------------------- /demo/assets/IBM_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_79.png -------------------------------------------------------------------------------- /demo/assets/IBM_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_80.png -------------------------------------------------------------------------------- /demo/assets/IBM_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_81.png -------------------------------------------------------------------------------- /demo/assets/IBM_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_82.png -------------------------------------------------------------------------------- /demo/assets/IBM_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_83.png -------------------------------------------------------------------------------- /demo/assets/IBM_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_84.png -------------------------------------------------------------------------------- /demo/assets/IBM_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_85.png -------------------------------------------------------------------------------- /demo/assets/IBM_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_86.png -------------------------------------------------------------------------------- /demo/assets/IBM_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_87.png -------------------------------------------------------------------------------- /demo/assets/IBM_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_88.png -------------------------------------------------------------------------------- /demo/assets/IBM_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_89.png -------------------------------------------------------------------------------- /demo/assets/IBM_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_90.png -------------------------------------------------------------------------------- /demo/assets/IBM_91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_91.png -------------------------------------------------------------------------------- /demo/assets/IBM_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_92.png -------------------------------------------------------------------------------- /demo/assets/IBM_93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_93.png -------------------------------------------------------------------------------- /demo/assets/IBM_94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_94.png -------------------------------------------------------------------------------- /demo/assets/IBM_95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_95.png -------------------------------------------------------------------------------- /demo/assets/IBM_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_96.png -------------------------------------------------------------------------------- /demo/assets/IBM_97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_97.png -------------------------------------------------------------------------------- /demo/assets/IBM_98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_98.png -------------------------------------------------------------------------------- /demo/assets/IBM_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/IBM_99.png -------------------------------------------------------------------------------- /demo/assets/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/assets/overlay.svg -------------------------------------------------------------------------------- /demo/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/chat.py -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/scratch-cryptography-library/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/out/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------