GitHub topics: image-encryption
bonglehongle/cybersecurity-encryption-decryption-tool
A Python GUI tool for learning classical encryption & decryption. Supports Caesar, Playfair, Rail Fence, ROT13, Substitution & Vigenère ciphers. Includes file handling, modular design, and error messages. Built with Tkinter for an interactive, educational cybersecurity experience.
Language: Python - Size: 1.7 MB - Last synced at: 1 day ago - Pushed at: 1 day ago - Stars: 1 - Forks: 0

Debajyati/NKrypTor
A Demo Website for Encrypting & Decrypting Images Using Various Algorithms
Language: Python - Size: 665 KB - Last synced at: 4 days ago - Pushed at: 23 days ago - Stars: 0 - Forks: 0

gbennnn/stegcrypt
StegCrypt is a lightweight steganography tool for securely embedding and extracting hidden messages within digital images.
Language: Jupyter Notebook - Size: 2.36 MB - Last synced at: 12 days ago - Pushed at: 16 days ago - Stars: 2 - Forks: 0

ph1nx/Image-encryption-using-3D-Logistic-Map-and-Improved-Chirikov-Map
A novel image encryption algorithm implementing 3D Logistic Map and Improved Chirikov Map for secure and robust image encryption. Features enhanced security through chaotic mapping, high key sensitivity, and resistance to cryptographic attacks. With proven effectiveness against brute force and statistical attacks.
Language: MATLAB - Size: 5.1 MB - Last synced at: 23 days ago - Pushed at: 23 days ago - Stars: 7 - Forks: 1

Riadh-Bouarroudj/Image-encryption
This code provides various encryption and scrambling techniques for digital images, including the Logistic map, Henon map, AES encryption, Arnold transform, and Hyper Chaotic Chen system.
Language: Python - Size: 7.67 MB - Last synced at: about 1 month ago - Pushed at: about 1 month ago - Stars: 7 - Forks: 0

Abhiroop2004/Secret-Image-Sharing
Contains functions for Visual Cryptography and Secret sharing of images using Shamir's Secret Sharing
Language: Python - Size: 1.97 MB - Last synced at: about 1 month ago - Pushed at: about 1 month ago - Stars: 0 - Forks: 0

QuantumByteStudios/CharPix
CharPix is a cross-platform Python tool designed to securely encode and decode text messages as PNG images using AES-256 encryption. It transforms any text into a base64-encrypted binary stream and visually represents it as an image. Later, it can decode and decrypt that image back into text — only with the correct password.
Language: Python - Size: 49.8 KB - Last synced at: about 2 months ago - Pushed at: about 2 months ago - Stars: 3 - Forks: 0

khaledkamr/image-encryption-decryption
This college computer security project demonstrates image encryption using confusion (pixel shuffling) and diffusion (Caesar cipher) on a grayscale image. Built in Python with Jupyter, it visualizes each step using Matplotlib.
Language: Jupyter Notebook - Size: 6.08 MB - Last synced at: 2 months ago - Pushed at: 2 months ago - Stars: 0 - Forks: 0

BitByNIK/jpeg_friendly_encryption_with_grayscale_stacking
SIL765 Project
Language: Python - Size: 3.02 MB - Last synced at: 18 days ago - Pushed at: 2 months ago - Stars: 0 - Forks: 0

Napattnpp/DIMZ
The Intelligent Disaster Management System with Alternative Energy and AI-Powered
Language: Python - Size: 22.7 MB - Last synced at: 2 months ago - Pushed at: 2 months ago - Stars: 0 - Forks: 0

pranaykumar2/steg-go
Go based Image Steganography Tool.
Language: JavaScript - Size: 21.7 MB - Last synced at: about 1 month ago - Pushed at: about 1 month ago - Stars: 20 - Forks: 0

TheNinza/imcrypt
An image encryption node-js cli
Language: JavaScript - Size: 45.9 KB - Last synced at: 19 days ago - Pushed at: over 3 years ago - Stars: 78 - Forks: 17

roydevashish/hybrid-technique-for-image-encryption
This project implements a hybrid image encryption technique by combining asymmetric and symmetric encryption methods. It utilizes the ChaCha20 stream cipher for symmetric encryption and ECC for asymmetric encryption to achieve robust and secure image protection.
Language: Python - Size: 14.6 KB - Last synced at: 3 months ago - Pushed at: 3 months ago - Stars: 0 - Forks: 0

tahaatas23/Encryption-and-Decryption-with-LabVIEW-Using-Master-Slave-and-Fractional-Order-Chaotic-System
Labview encryption and decryption
Size: 0 Bytes - Last synced at: 3 months ago - Pushed at: 3 months ago - Stars: 0 - Forks: 0

akash-rajak/Image-Encryption-Decryption
Python Script that allows user to encrypt or decrypt images and save it.
Language: Python - Size: 2.22 MB - Last synced at: 3 months ago - Pushed at: about 2 years ago - Stars: 35 - Forks: 8

MuonRay/Quantum-Encryption-of-Images-using-Bitwise-XOR-and-QRNG
Article here: http://muonray.blogspot.com/2022/02/quantum-encryption-of-images-in-python.html The definition of image encryption used here is an extension of data encryption in general: using the bitwise XOR operation of the original image pixels and the random key image pixels, with the key image being either a pseudo-random stream cipher or the quantum random stream cipher or anti-correlated entangled information shared over a secure channel. In either case we Perform bitwise XOR operation on the encrypted image and the key image. It can be seen from the image encryption and decryption that they are all the same operation. According to the above bitwise XOR operation, we assume: xor(a,b)=c You can get: xor(c,b)=a Or: xor(c,a)=b In summary, we assume that a is the original image data and b is the key, then c calculated by xor(a,c) is the encrypted ciphertext. This is a simple summary of the encryption and decryption process as used in the coding in this repository. Encryption process: Perform a bitwise XOR operation on the image a and the key b to complete the encryption and obtain the ciphertext c. Decryption process: Perform a bitwise XOR operation on the ciphertext c and the key b, complete the decryption, and get the image a. We can use our quantum random numbers generator in 2 ways to create our image encryption key: (1) as a random number generator seed source (2) using the random superposition of the H and V modes We can also use the shared set of correlated images, captured using the single CCD, from our entangled photon source with Alice getting one half and Bob getting the anti-correlated half. This provides the perfect key, with the quantum images shared over a separate channel hidden from the encrypted classical images. The file exchange channel is 2 way: Alice can use Her key to encrypt the image, Bob can use His key to decrypt the image OR Bob can use His key to encrypt the image, Alice can use Her key to decrypt the image. The XOR Cipher in this use can also be extended as a component in more complex overlay network ciphers if need be however for computational efficiency it is not necessary. It is just as effectual to have 1 quantum cipher as many, so in effect the system is completely hidden, by virtue of hidden variables, and is encrypted in an information condensate.
Language: Python - Size: 3.67 MB - Last synced at: 3 months ago - Pushed at: about 3 years ago - Stars: 10 - Forks: 1

yashokuu/ImgCrypt
This tool allows you to encrypt and decrypt images using a keyword-based encryption method. The encryption adds random noise to the image and embeds text into the noise, while the decryption restores the image using the same keyword.
Language: Python - Size: 5.86 KB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

20MH1A04H9/PINNACLE
Comprehensive IT solutions, from cybersecurity to software development, designed to empower businesses in the digital era
Language: Python - Size: 0 Bytes - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

Dilipgjadhav/CS_Encryption_Decryption_Project
🔐 Secure Data Hiding in Images using Steganography | AICTE & IBM SkillsBuild Internship Project. This Python-based tool hides secret messages in images using OpenCV & PyQt6, with password-protected decryption. Secure, user-friendly & efficient for cybersecurity. Future scope: multi-format support, AES encryption & web/mobile integration.
Language: Python - Size: 2.16 MB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

codewithshek/IBM-Intern-Secure-Data-Hiding-in-Image
IBM-Intern-Secure-Data-Hiding-in-Image is a cutting-edge web application designed to protect your confidential information by securely encrypting and decrypting messages hidden within images. Leveraging advanced technologies such as HTML, CSS (Tailwind CSS), TypeScript, React, Vite, Python (Flask), Pillow and steganography.
Language: TypeScript - Size: 1.65 MB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 3 - Forks: 0

xfgryujk/weibo-img-crypto
自动加密解密微博上传的图片
Language: JavaScript - Size: 5.25 MB - Last synced at: 3 months ago - Pushed at: over 6 years ago - Stars: 242 - Forks: 28

mohd-amaan1/Image-Steganography
A secure and intuitive steganography tool for hiding and revealing messages in images using AES encryption and LSB encoding.
Language: Python - Size: 0 Bytes - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 1 - Forks: 0

cappuccino19/DWT-MWT
“Robust Triple-Color Watermarking using Elliptical Monogenic Wavelet Transform and Singular Value Decomposition”
Language: MATLAB - Size: 51.5 MB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

KhushXploit333/IMAGE_CRYPTO
##IMAGE_CRYPTO## "Secure your images with pixel manipulation and RSA encryption."!!!
Language: Python - Size: 518 KB - Last synced at: 5 months ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

dannyi96/Image-Cryptography
Implementation of image cryptography using Rubik's Cube Principle https://www.hindawi.com/journals/jece/2012/173931/
Language: Python - Size: 5.04 MB - Last synced at: 22 minutes ago - Pushed at: over 1 year ago - Stars: 32 - Forks: 21

KatiaAuxilien/encryption_images_Paillier
Program to encrypt and decrypt images (.pgm) with Paillier cryptosystem. Repository dedicated to an internship in the ICAR team at LIRMM.
Language: C++ - Size: 8.77 MB - Last synced at: 6 months ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

cgurkan/image-encryption-using-chaotic-map
Chaotic image encryption based on Contourlet transformation
Language: MATLAB - Size: 462 KB - Last synced at: 4 months ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

Ch1ffr3punk/pngcrypt
pngcrypt - Encrypt/decrypt .png images.
Language: Go - Size: 6.84 KB - Last synced at: about 1 month ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

Ch1ffr3punk/xorpng
xorpng - XOR, square and equal in size, .png images
Language: Go - Size: 3.91 KB - Last synced at: about 1 month ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

Anorak001/Image-Encryptor
An Image Encryptor built using JAVA
Language: Java - Size: 2.04 MB - Last synced at: 7 months ago - Pushed at: 7 months ago - Stars: 0 - Forks: 1

PraweenSoni/IMG-Encryption
A Simple Image Encryption/Decryption made by Java.
Language: Java - Size: 10.7 KB - Last synced at: 7 months ago - Pushed at: 7 months ago - Stars: 0 - Forks: 0

sdsubhajitdas/Image-Locker
Encryption & Decryption tool for images.
Language: Python - Size: 15.6 KB - Last synced at: 3 months ago - Pushed at: over 2 years ago - Stars: 6 - Forks: 0

RobCyberLab/Pixel-Crypt-Engine
🖼️Pixel Crypt Engine🛡️
Language: JavaScript - Size: 123 KB - Last synced at: 3 months ago - Pushed at: 7 months ago - Stars: 1 - Forks: 0

Saransh-cpp/Chaotic-Encryption
This repository contains the code for encrypting an image using various techniques and PRNGs.
Language: Python - Size: 29 MB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 24 - Forks: 3

kunzhan/HC_DNA
JEI 2017: Cross-utilizing hyperchaotic and DNA sequences for image encryption
Language: Matlab - Size: 595 KB - Last synced at: 27 days ago - Pushed at: over 8 years ago - Stars: 17 - Forks: 6

sDanielSilva/SimpleImageEncryptor
A versatile file encryption tool that securely encrypts and decrypts image and other file types with AES and DES algorithms, supporting multiple modes and easy key management.
Language: Java - Size: 1.99 MB - Last synced at: 4 months ago - Pushed at: 7 months ago - Stars: 1 - Forks: 0

NotReeceHarris/stega.js
A Node-based Steganography Framework Seamlessly Integrating Steganography and Secure Cryptography.
Language: TypeScript - Size: 2.86 MB - Last synced at: 3 months ago - Pushed at: 3 months ago - Stars: 5 - Forks: 0

MHS-4ever/Image-Encryption-Decryption-Tool
A Tkinter-based Python application for encrypting and decrypting JPEG images using XOR-based encryption. The app features a simple GUI to select image files, enter an encryption key, and perform encryption or decryption operations. Includes error handling and validation to ensure smooth user experience.
Language: Jupyter Notebook - Size: 13.7 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 1 - Forks: 0

itsofficialvibhu/CryptaPix-encrypting-images
A combination of "crypt" and "pix" to convey the idea of encrypting images - An image encryption node-js cli
Language: JavaScript - Size: 68.4 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 0 - Forks: 0

ndapham/RubikCube-AES-ImageEncryption
Image Encryption/Decryption using Rubik's Cube Principle and AES
Language: Jupyter Notebook - Size: 3.13 MB - Last synced at: 19 days ago - Pushed at: over 3 years ago - Stars: 10 - Forks: 1

Noorani-MM/SecureImage
Make your image files secure by encoding and decoding
Language: PHP - Size: 15.6 KB - Last synced at: 7 months ago - Pushed at: 10 months ago - Stars: 1 - Forks: 0

SaadARazzaq/Image-enCypher
Encrypt and Decrypt Image files 🗃️
Language: Python - Size: 16.6 KB - Last synced at: 4 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 1

kemalsanli/YMGK2
Bitwise xor kullanarak python ile görüntü şifreleme.
Language: Python - Size: 238 MB - Last synced at: 10 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 1

Ahmad-Ilyas-Bajwa/PRODIGY_CS_02
Prodigy InfoTech Cyber-Security Internship Task#2
Language: Python - Size: 2.93 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 1 - Forks: 0

RDxR10/Image-Encryption-BFV
This is an attempt to use BFV-FHE scheme for image encryption using an open-source implementation of the same.
Language: Python - Size: 61.5 KB - Last synced at: 3 months ago - Pushed at: over 2 years ago - Stars: 4 - Forks: 0

billalkuet07/A-New-Approach-of-Image-Encryption-Using-3D
Language: Matlab - Size: 1.57 MB - Last synced at: 11 months ago - Pushed at: over 7 years ago - Stars: 20 - Forks: 5

tanay0505/PRODIGY_CS_02
Pixel Manipulation for Image Encryption
Language: Python - Size: 29.3 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

vedantkanabar/Image-Encryption-Analyser
A Python library with functions to encrypt/decrypt images while analyzing cryptographic aspects of the image at each step
Language: Python - Size: 28.3 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 1 - Forks: 1

vimalan-u/Image_Steganography
Language: HTML - Size: 11.7 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

falgunichugh/PRODIGY_CS_02
This repository contains Python code for image encryption and decryption using pixel manipulation. It offers simple functions for securing and retrieving image data through pixel-level operations, providing an accessible solution for basic image security needs.
Size: 7.81 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

kur1an/SCT_CS_02
SkillCraft Technology Task 02 Image Encryption Tool : Pixel Manipulation
Language: Python - Size: 139 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

vutuanhai237/AKQ
AKQ: A hybrid quantum-classical image encryption system
Language: Jupyter Notebook - Size: 71.7 MB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

archana1998/image-encryption
Image Encryption and Decryption using Neural Networks
Language: MATLAB - Size: 9.77 KB - Last synced at: 12 months ago - Pushed at: over 5 years ago - Stars: 13 - Forks: 3

evanwporter/Julia-Encryption-Algorithm
Proof of concept code demonstrating how the Filled Julia Set can be used to encrypt images.
Language: Jupyter Notebook - Size: 1.5 MB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

miRoox/image-encryption-with-improved-Chirikov-map
基于改进的Chirikov映射的彩色图像加密算法
Language: C++ - Size: 2.59 MB - Last synced at: 10 days ago - Pushed at: over 4 years ago - Stars: 8 - Forks: 1

anisaunnisa02/PRODIGY_CS_02
A simple Python tool for encrypting and decrypting images using basic pixel manipulation. This tool uses the Pillow library to read and modify image pixel values, providing a straightforward way to secure images through encryption.
Language: Python - Size: 28.6 MB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

soumi1805/Image-Encryption-using-RSA-algorithm-using-MATLAB
Language: MATLAB - Size: 53.7 KB - Last synced at: 3 months ago - Pushed at: about 5 years ago - Stars: 6 - Forks: 0

Op27/pdf-to-Image-encryptor
The PDF-to-Image-Encryptor is a Python app that converts PDF pages to secure, encrypted images, ensuring privacy and security. It also decrypts images back to their original form.
Language: Python - Size: 2.93 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 1 - Forks: 0

janzd/Hide-Image-in-Image
Code that lets you hide an image in another image and decode it again without information loss
Language: Python - Size: 2.86 MB - Last synced at: about 1 year ago - Pushed at: over 4 years ago - Stars: 30 - Forks: 10

jithinkc22j/Image_Encryption_Arnoldmap_DNA_Mandelbrotset
Image encryption using chaotic maps (Arnold map) ,Mandelbrot set and DNA encryption
Language: MATLAB - Size: 2.99 MB - Last synced at: about 1 year ago - Pushed at: over 2 years ago - Stars: 10 - Forks: 1

20MH1A04H9/Prodigy_infoTech
Providing World Class E-Learning Experince with Real world Internships
Language: Python - Size: 765 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

TejveerSingh13/Image-Steganography
Using Huffman code to encode and compress the secret text data along with using histogram shifting to encode the data into the image.
Language: Python - Size: 3.72 MB - Last synced at: about 1 year ago - Pushed at: about 2 years ago - Stars: 5 - Forks: 0

OGD311/ImageProtector
Image Encryption
Size: 7.81 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

Lancer59/Visual_Cryptography
Encryption of image by creating shares based on an algorithm and decryption by applying or operation on the shares
Language: Python - Size: 1.68 MB - Last synced at: over 1 year ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 1

AkshayKShuklaa/SecureImageX
Secure Image X Android project Image Encryption and Decryption using AES(Android Studio Java)
Language: Java - Size: 607 KB - Last synced at: 8 months ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

SatyamSoni23/Steganography
Image Encryption. This project is under progress.
Language: Python - Size: 5.01 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 3 - Forks: 1

ytl0623/yolov7-GDPR
A public surveillance camera system capable of privacy encryption and protection 可加密及保護隱私之公共監視器
Language: Python - Size: 139 MB - Last synced at: about 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

kamal-dev/chaotic-image-encryption
Language: Matlab - Size: 77.1 KB - Last synced at: over 1 year ago - Pushed at: almost 7 years ago - Stars: 7 - Forks: 10

jithinkc22j/Simple_Image_Encryption_DMA
This is a simple image encryption algorithm based on DMA (Diffused Mandelbrot set + Arnold map) system.
Language: MATLAB - Size: 182 KB - Last synced at: about 1 year ago - Pushed at: almost 5 years ago - Stars: 9 - Forks: 2

ph1nx/Image-Encryption-using-Pseudo-Random-Number-Generator-and-Elliptic-Curve-Cryptography
Language: Python - Size: 2.27 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

athrvadeshmukh/Steganographyx
It is a Steganography Project created for IBM Skills Build Internship with collaboration with Edunet and AICTE. You can hide text in images as well as wave audio using key and similarly you and decrypt the images and audio file to see the hidden text in it.
Language: Python - Size: 6.79 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 3 - Forks: 0

AbssZy/image-encryption
This is an image encryption project using AES in Python 2.7.15
Language: Python - Size: 2.48 MB - Last synced at: 11 months ago - Pushed at: over 4 years ago - Stars: 13 - Forks: 2

Rupak09/ImageGuardian
Image Encryption using GENOMICS (Central Dogma algorithm).
Language: Python - Size: 182 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

lunarwhite/lfsr-encryption
Linear feedback shift register, Princeton COS126 / Upenn CIS110.
Language: Java - Size: 571 KB - Last synced at: about 2 months ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

Ragarr/Criptografia_2023-24 Fork of seniorbeto/Criptografia_2023-24
Continuación del proyecto original. El propósito general de la aplicación es encriptar localmente secciones de imágenes que se almacenan en un servidor.
Language: Python - Size: 369 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

Y-Srivaishnavi/image_encryption
Encrypt and decrypt images using chaotic maps: logistic, tent and sine maps (1-dimensional), henon and standard maps (2-dimensional). Additionally: separate RGB channels of an image, test separated channels. Put salt and pepper noise in plain image. Plot histogram and correlation plots for all these.
Language: Python - Size: 31.3 KB - Last synced at: over 1 year ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 1

chettiargautam/Encoding-and-Decoding-Signals
Language: MATLAB - Size: 3.91 KB - Last synced at: almost 2 years ago - Pushed at: almost 3 years ago - Stars: 1 - Forks: 0

Lost1101/Image-Encryption-v.01
Collaboration project w my friends 🤓🤓🤓, for Image Encryption with AES-CBC and Double Steganography
Language: Python - Size: 9.75 MB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

skrishnan2001/Image-Security-using-Cryptography-and-Blockchain-Techniques
A project aimed to prevent malicious attacks on images, primarily using cryptographic techniques and blockchain based image authentication schemes
Language: Python - Size: 15.4 MB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

descosmos/ChaoticImageEncryption
An image encryption algorithm based on 6-dimensional hyper chaotic system and DNA encoding.
Language: MATLAB - Size: 927 KB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 11 - Forks: 1

Caknoooo/go-image-base64-template
In this repository I want to make a base 64 image saving file in multipart/file form with the aim of making it easier for me and other developers to save and use it. This repository is used by using a clean architecture
Language: Go - Size: 18.6 KB - Last synced at: 3 months ago - Pushed at: almost 2 years ago - Stars: 3 - Forks: 0

r-aguilera/ImageEncryption
C++ image encryption using OpenCV
Language: C++ - Size: 2.85 MB - Last synced at: almost 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 1

saishmirajkar/File-Encryption-and-Decryption-with-DES-Algorithm
Secure your data using our Java program with DES encryption. Convert image files into unreadable form and back for enhanced security. Leverage symmetric key encryption for data protection during transmission and storage. Explore the power of cryptography. Happy encrypting! 🔐🖼️🚀
Language: Java - Size: 0 Bytes - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

zhengziqiang/EncryptGAN
The codes of EncryptGAN. EncryptGAN: Towards Assymmetric Image Encryption and Hiding
Size: 110 MB - Last synced at: almost 2 years ago - Pushed at: over 3 years ago - Stars: 13 - Forks: 1

d36mehta/image-encryption
Language: Python - Size: 129 KB - Last synced at: almost 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

RyZal25/image-encryption
Using python language to encrypt data. The algorithm that we implemented in this project is AES (Advance Encryption Standard) using CBC Mode. We Do Double Encryption of which data will be encrypted on the data so that we get a more secure type of data. We are very happy that someone will make some improvements or use the main logic of our code >.<
Language: Python - Size: 65.4 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

Adversarial-Intelligence-Group/image-encryption
Encryption and Generation of Images for Privacy-Preserving Machine Learning in Smart Manufacturing
Language: Python - Size: 26.4 KB - Last synced at: about 2 years ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 0

ayushjaipuriyar/image-encryption
Workings on research paper related to image encryption using chaos maps and DNA encoding.
Language: TeX - Size: 157 MB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 1

jakuzek/CyberSecurity-SimpleProjects
Welcome to the Cybersecurity Projects folder! This curated collection features a range of simple Python programs focused on the field of cybersecurity.
Language: Python - Size: 437 KB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

ggicci/image-decrypter
Decrypt images in the browser.
Language: TypeScript - Size: 942 KB - Last synced at: about 1 year ago - Pushed at: almost 4 years ago - Stars: 2 - Forks: 0

kasiv008/Chaos-Based-Image-Encryption
Unofficial Implementation of "Chaos-based image encryption algorithm" by Zhi-Hong Guan.
Language: Jupyter Notebook - Size: 4.89 MB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

Tejas204/IETD
This repository contains the code for a novel image encryption technique using Tinkerbell and Duffing chaotic map
Language: Jupyter Notebook - Size: 10.1 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

YashKandoi/Homomorphic-Encryption
Study Oriented Project with applications in Healthcare, Finance and Elections
Language: C - Size: 316 KB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

RachanaJayaram/Image-Encryption-Chaos-Maps
This is a project in cryptography that involves implementing image encryption using various chaos maps and comparing their merits based on key sensitivity,
Language: Jupyter Notebook - Size: 9.91 MB - Last synced at: over 2 years ago - Pushed at: almost 4 years ago - Stars: 64 - Forks: 25

angzosan/ImageEncryptionDecryption
Simple script that encrypts and decrypts an image in Python
Language: Python - Size: 43 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 0

krishpatel2383/Image-Encryptor-Decryptor
Image-Encryptor-Decryptor is a straightforward tool that enables you to encrypt and decrypt your image files with just a few clicks in Java.
Language: Java - Size: 2.93 KB - Last synced at: over 2 years ago - Pushed at: over 2 years ago - Stars: 3 - Forks: 0

memburg/erebus
Video and Image Encryption Tool Written in MATLAB
Language: MATLAB - Size: 55.3 MB - Last synced at: over 2 years ago - Pushed at: almost 3 years ago - Stars: 2 - Forks: 0

dhruvie/RSA
Image Encryption using RSA Algorithm in Python
Language: Jupyter Notebook - Size: 4.69 MB - Last synced at: about 2 years ago - Pushed at: almost 5 years ago - Stars: 18 - Forks: 23

RMDE/ImageEncipher
基于差分扩展的缩略图保持加密技术
Language: MATLAB - Size: 13.5 MB - Last synced at: about 2 years ago - Pushed at: over 3 years ago - Stars: 5 - Forks: 0

codeShaurya/Image-encryption
Evaluating the permutation and diffusion operations used in image encryption based on chaotic maps
Language: C++ - Size: 3.85 MB - Last synced at: over 2 years ago - Pushed at: over 6 years ago - Stars: 31 - Forks: 19
