├── .gitignore ├── Chaos ├── Check.py ├── Convert.py ├── Decryption.py ├── Encryption.py ├── Key.py ├── XInitial.py ├── Xn.py ├── YInitial.py ├── Yn.py └── __init__.py ├── ImageAnalyserTool.py ├── bifurcation.py ├── coplot.py ├── correlationcofficient.py ├── cryptotiger.bmp ├── gui.py ├── histogram.py ├── meansquareerror.py ├── npcr.py ├── readme.md ├── requirements.txt ├── tiger.bmp └── uaci.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/.gitignore -------------------------------------------------------------------------------- /Chaos/Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Check.py -------------------------------------------------------------------------------- /Chaos/Convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Convert.py -------------------------------------------------------------------------------- /Chaos/Decryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Decryption.py -------------------------------------------------------------------------------- /Chaos/Encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Encryption.py -------------------------------------------------------------------------------- /Chaos/Key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Key.py -------------------------------------------------------------------------------- /Chaos/XInitial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/XInitial.py -------------------------------------------------------------------------------- /Chaos/Xn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Xn.py -------------------------------------------------------------------------------- /Chaos/YInitial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/YInitial.py -------------------------------------------------------------------------------- /Chaos/Yn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/Chaos/Yn.py -------------------------------------------------------------------------------- /Chaos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageAnalyserTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/ImageAnalyserTool.py -------------------------------------------------------------------------------- /bifurcation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/bifurcation.py -------------------------------------------------------------------------------- /coplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/coplot.py -------------------------------------------------------------------------------- /correlationcofficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/correlationcofficient.py -------------------------------------------------------------------------------- /cryptotiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/cryptotiger.bmp -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/gui.py -------------------------------------------------------------------------------- /histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/histogram.py -------------------------------------------------------------------------------- /meansquareerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/meansquareerror.py -------------------------------------------------------------------------------- /npcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/npcr.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | numpy 3 | matplotlib 4 | 5 | -------------------------------------------------------------------------------- /tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/tiger.bmp -------------------------------------------------------------------------------- /uaci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowankit/Image-encryption-using-chaos-theory/HEAD/uaci.py --------------------------------------------------------------------------------