Click here to Skip to main content
15,889,116 members
Articles / Programming Languages / C#
Article

Visual Cryptography Generator

Rate me:
Please Sign up or sign in to vote.
4.50/5 (12 votes)
22 Oct 2007CPOL1 min read 107.6K   8.3K   43   33
Visual cryptography is a cryptographic technique which allows visual information (pictures, text, etc.) to be encrypted in such a way that the decryption can be performed by the human visual system, without the aid of computers.

Image 1

Screenshot - codeproject0.png

Image 2

Screenshot - codeproject1.png

After Combining 2 Images

Screenshot - codeproject.png

Introduction

I should say "Thank you" to tectures, I write this article because of his idea.

Before writing this article, I've written an article about alpha in PNG to make a magic card for friends and tectures asked me what's the different between my program and Visual cryptography. Actually, in that article I didn't think about encrypting anything inside the image, it just did a simple track and made your friends happy.

And I found that no one had written this before, so I've made a simple program to represent this concept.

Background

Visual cryptography was introduced by Naor and Shamir at EUROCRYPT '94. They asked the following intriguing question: is it possible to devise a secret sharing scheme in which an image can be reconstructed "visually" by superimposing two shares? Each share would consist of a transparency, made up of black and white pixels. (Note that it would be more accurate to say "transparent" rather than "white".) Examination of one share should reveal no information about the image.

For more details, please read this.

Using the Code

Two constant variables that need to be defined are as follows:

C#
private Size IMAGE_SIZE = new Size(437, 106); //Image size
private const int GENERATE_IMAGE_COUNT = 2; //How many images you would like to generate

The following function generates the shared image:

C#
private Bitmap[] GenerateImage(string inputText)
{
    Bitmap finalImage = new Bitmap(IMAGE_SIZE.Width, IMAGE_SIZE.Height);
    Bitmap tempImage = new Bitmap(IMAGE_SIZE.Width / 2, IMAGE_SIZE.Height);
    Bitmap[] image = new Bitmap[GENERATE_IMAGE_COUNT];
    
    Random rand = new Random();
    SolidBrush brush = new SolidBrush(Color.Black);
    Point mid = new Point(IMAGE_SIZE.Width / 2, IMAGE_SIZE.Height / 2);
    Graphics g = Graphics.FromImage(finalImage);
    Graphics gtemp = Graphics.FromImage(tempImage);

    //set text format
    StringFormat sf = new StringFormat();
    sf.Alignment = StringAlignment.Center;
    sf.LineAlignment = StringAlignment.Center;
    Font font = new Font("Times New Roman", 48);

    Color fontColor;
    g.DrawString(inputText, font, brush, mid, sf);
    gtemp.DrawImage(finalImage, 0, 0, tempImage.Width, tempImage.Height);
    for (int i = 0; i < image.Length; i++)
    {
        image[i] = new Bitmap(IMAGE_SIZE.Width, IMAGE_SIZE.Height);
    }
    
    int index = -1;
    int width = tempImage.Width;
    int height = tempImage.Height;
    for (int x = 0; x < width; x += 1)
    {
        for (int y = 0; y < height; y += 1)
        {
            fontColor = tempImage.GetPixel(x, y);
            index = rand.Next(image.Length);

            //Check if the color empty
            if (fontColor.Name == Color.Empty.Name)
            {
                for (int i = 0; i < image.Length; i++)
                {
                    if (index == 0)
                    {
                        image[i].SetPixel(x * 2, y, Color.Black);
                        image[i].SetPixel(x * 2 + 1, y, Color.Empty);
                    }
                    else
                    {
                        image[i].SetPixel(x * 2, y, Color.Empty);
                        image[i].SetPixel(x * 2 + 1, y, Color.Black);
                    }
                }
            }
            else
            {
                for (int i = 0; i < image.Length; i++)
                {
                    if ((index + i) % image.Length == 0)
                    {
                        image[i].SetPixel(x * 2, y, Color.Black);
                        image[i].SetPixel(x * 2 + 1, y, Color.Empty);
                    }
                    else
                    {
                        image[i].SetPixel(x * 2, y, Color.Empty);
                        image[i].SetPixel(x * 2 + 1, y, Color.Black);
                    }
                }
            }
        }
    }

    //Clean Up
    brush.Dispose();
    tempImage.Dispose();
    finalImage.Dispose();

    return image;
}

Points of Interest

They demonstrated a visual secret sharing scheme, where an image was broken up into n shares so that only someone with all n shares could decrypt the image, while any n-1 shares revealed no information about the original image. Each share was printed on a separate transparency, and decryption was performed by overlaying the shares. When all n shares were overlayed, the original image would appear.

History

  • 23rd October, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect MouxIdea Limited
Hong Kong Hong Kong
1981 Born in Hong Kong
1996 Become Badminton Trainer
1997 Hong Kong's Return to China
1998 The Year After Hong Kong's Return to China
1999 The Year Before Millennium
2000 First touch of programming - ASP(guestbook)
2001 Outstanding Student Award - Computing Department
2002 Xcellence Developer Awards - Best Graphical Focused Application(Game) Award
2003 Microsoft MVP - .NET
2004 Be lost in Technology
2005 Microsoft MVP - C#
2006 Microsoft MVP - C#
2007 Getting Marry - Cheers~
2008 Microsoft MVP - C#
2009 Microsoft MVP - C#
2010 Microsoft MVP - C#
2011 Start my software hut

http://www.csharpfans.com


http://www.bugyiu.com


http://www.mouxidea.com

Comments and Discussions

 
GeneralRe: Great Minds think alike... Pin
Jacky Yiu1-Nov-07 17:00
Jacky Yiu1-Nov-07 17:00 
GeneralRe: Great Minds think alike... Pin
Keith Vinson2-Nov-07 4:50
Keith Vinson2-Nov-07 4:50 
GeneralRe: Great Minds think alike... Pin
Jacky Yiu6-Nov-07 4:57
Jacky Yiu6-Nov-07 4:57 
GeneralRe: Great Minds think alike... Pin
Member 1000475323-Oct-13 15:55
Member 1000475323-Oct-13 15:55 
GeneralHere's another idea Pin
leppie23-Oct-07 5:05
leppie23-Oct-07 5:05 
GeneralRe: Here's another idea Pin
Jacky Yiu23-Oct-07 14:59
Jacky Yiu23-Oct-07 14:59 
GeneralVery Interesting Idea Pin
merlin98123-Oct-07 4:07
professionalmerlin98123-Oct-07 4:07 
GeneralRe: Very Interesting Idea Pin
Jacky Yiu23-Oct-07 4:55
Jacky Yiu23-Oct-07 4:55 
it's depends on the usage and how do you implement. you can implement it like RAID-5 to split and prevent a number of images were crashed.

is that good? Wink | ;)
GeneralRe: Very Interesting Idea Pin
Member 1000475323-Oct-13 15:56
Member 1000475323-Oct-13 15:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.