From 79a91c68784c671f28cef2f58b3cf9baf703f211 Mon Sep 17 00:00:00 2001 From: smitthakore <149821378+smitthakore@users.noreply.github.com> Date: Mon, 28 Oct 2024 19:23:17 +0530 Subject: [PATCH 1/3] Create Image-encryption.md --- Projects/2-Intermediate/Image-encryption.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Projects/2-Intermediate/Image-encryption.md diff --git a/Projects/2-Intermediate/Image-encryption.md b/Projects/2-Intermediate/Image-encryption.md new file mode 100644 index 000000000..7c0d5b5c6 --- /dev/null +++ b/Projects/2-Intermediate/Image-encryption.md @@ -0,0 +1,20 @@ +# Custom encryption with steganography + +**Tier - 2:** Intermediate + +- Custom encryption tool that can hide your data inside any png image helping in secure transmission and storage of user data. + +## User Stories + +- [ ] Implement data ingest process. input can be of txt format. +- [ ] Create a custom encryption such as Block cipher. +- [ ] Add another layer of encryption such as AES. +- [ ] Input source image in which data is to be hidden. +- [ ] Use steganography function to hide encrypted data into given image. + +## Bonus features + +- [ ] Implement decryption for each step starting from steganography. + +## Example projects +https://github.com/smitthakore/Custom-ETLpipeline-SecureTransmission- From 458ef751ddfea9c99fc8ef46760e46c51eb315b4 Mon Sep 17 00:00:00 2001 From: smitthakore <149821378+smitthakore@users.noreply.github.com> Date: Mon, 28 Oct 2024 19:25:03 +0530 Subject: [PATCH 2/3] Create steganography-encryption.md --- .../steganography-encryption.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Projects/2-Intermediate/steganography-encryption.md diff --git a/Projects/2-Intermediate/steganography-encryption.md b/Projects/2-Intermediate/steganography-encryption.md new file mode 100644 index 000000000..7c0d5b5c6 --- /dev/null +++ b/Projects/2-Intermediate/steganography-encryption.md @@ -0,0 +1,20 @@ +# Custom encryption with steganography + +**Tier - 2:** Intermediate + +- Custom encryption tool that can hide your data inside any png image helping in secure transmission and storage of user data. + +## User Stories + +- [ ] Implement data ingest process. input can be of txt format. +- [ ] Create a custom encryption such as Block cipher. +- [ ] Add another layer of encryption such as AES. +- [ ] Input source image in which data is to be hidden. +- [ ] Use steganography function to hide encrypted data into given image. + +## Bonus features + +- [ ] Implement decryption for each step starting from steganography. + +## Example projects +https://github.com/smitthakore/Custom-ETLpipeline-SecureTransmission- From 69632b153dfb42bbabe6d1a1a38c3b117587daa2 Mon Sep 17 00:00:00 2001 From: smitthakore <149821378+smitthakore@users.noreply.github.com> Date: Mon, 28 Oct 2024 19:25:31 +0530 Subject: [PATCH 3/3] Delete Projects/2-Intermediate/Image-encryption.md --- Projects/2-Intermediate/Image-encryption.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Projects/2-Intermediate/Image-encryption.md diff --git a/Projects/2-Intermediate/Image-encryption.md b/Projects/2-Intermediate/Image-encryption.md deleted file mode 100644 index 7c0d5b5c6..000000000 --- a/Projects/2-Intermediate/Image-encryption.md +++ /dev/null @@ -1,20 +0,0 @@ -# Custom encryption with steganography - -**Tier - 2:** Intermediate - -- Custom encryption tool that can hide your data inside any png image helping in secure transmission and storage of user data. - -## User Stories - -- [ ] Implement data ingest process. input can be of txt format. -- [ ] Create a custom encryption such as Block cipher. -- [ ] Add another layer of encryption such as AES. -- [ ] Input source image in which data is to be hidden. -- [ ] Use steganography function to hide encrypted data into given image. - -## Bonus features - -- [ ] Implement decryption for each step starting from steganography. - -## Example projects -https://github.com/smitthakore/Custom-ETLpipeline-SecureTransmission-