Skip to content

Tiny little package demonstrating how the filled julia set can be used to encrypt images.

License

Notifications You must be signed in to change notification settings

evanwporter/Julia-Encryption-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Julia Set Encryption Algorithm

Proof of concept for how the filled julia set can be used to encryt and decrypt images. The following image is an example of the encryption and decryption capabilities of the julia set.

encrypted-decrypted frog

To use this library, simply download the JEA folder. Two functions are inside: encrypt and decrypt.

Encrypt

  • Parameters
    • image_path: Path to the image that needs to be encrypted.
    • c: The key (ie: password) used to encrypt the image. This is a complex function of the form x + iy where x and y are real numbers.
    • min_coordinate: minimum x-y coordinate to generate the Julia set with.
    • max_coordinate: maximum x-y coordinate to generate the Julia set with.
    • iterations_count: max number of iterations to generate the Julia set with.
    • threshold: when the orbit of Q exceeds the threshold then its assumed that the orbit has escaped.
  • Return
    • Saves image to image_path_encrypted.png. The parameters used to generate the julia set are saved in the image file's metadata.

Decrypt

  • Parameters
    • image_path: Path to the image that needs to be decrypted.
    • c: The key (ie: password) used to decrypt the image. This is a complex function of the form x + iy.
  • Return
    • Saves image to image_path_decrypted.png

Example

import jea
img_path = r"images\frog.jpg"
jea.encrypt(r"images\frog.jpg", 0.5 + 0.75j)
jea.decrypt(r"images\frog_encrypted.png", 0.5 + 0.75j)

About

Tiny little package demonstrating how the filled julia set can be used to encrypt images.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published