]> granicus.if.org Git - imagemagick/blob - www/cipher.html
...
[imagemagick] / www / cipher.html
1
2
3
4
5 <!DOCTYPE html>
6 <html lang="en">
7 <head>
8   <meta charset="utf-8"  />
9   <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"  />
10   <title>Encipher or Decipher an Image @ ImageMagick</title>
11   <meta name="application-name" content="ImageMagick" />
12   <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves." />
13   <meta name="application-url" content="https://www.imagemagick.org" />
14   <meta name="generator" content="PHP" />
15   <meta name="keywords" content="encipher, or, decipher, an, image, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert" />
16   <meta name="rating" content="GENERAL" />
17   <meta name="robots" content="INDEX, FOLLOW" />
18   <meta name="generator" content="ImageMagick Studio LLC" />
19   <meta name="author" content="ImageMagick Studio LLC" />
20   <meta name="revisit-after" content="2 DAYS" />
21   <meta name="resource-type" content="document" />
22   <meta name="copyright" content="Copyright (c) 1999-2017 ImageMagick Studio LLC" />
23   <meta name="distribution" content="Global" />
24   <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
25   <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
26   <link href="https://www.imagemagick.org/script/cipher.html" rel="canonical" />
27   <link href="../images/wand.png" rel="icon" />
28   <link href="../images/wand.ico" rel="shortcut icon" />
29   <link href="css/magick.css" rel="stylesheet" />
30 </head>
31 <body>
32 <div class="magick-masthead">
33   <div class="container">
34     <script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle"
35          style="display:block"
36          data-ad-client="ca-pub-3129977114552745"
37          data-ad-slot="6345125851"
38          data-ad-format="auto"></ins>
39     <script>
40       (adsbygoogle = window.adsbygoogle || []).push({});
41     </script>
42     <nav class="nav magick-nav">
43       <a class="nav-link " href="../index.html">Home</a>
44       <a class="nav-link " href="download.html">Download</a>
45       <a class="nav-link " href="command-line-tools.html">Tools</a>
46       <a class="nav-link " href="command-line-processing.html">Command-line</a>
47       <a class="nav-link " href="resources.html">Resources</a>
48       <a class="nav-link " href="develop.html">Develop</a>
49       <a class="nav-link " href="https://www.imagemagick.org/script/search.php">Search</a>
50       <a class="nav-link float-right" href="https://www.imagemagick.org/discourse-server/">Community</a>
51     </nav>
52   </div>
53 </div>
54 <div class="container">
55 <div class="magick-header">
56 <p class="text-center"><a href="cipher.html#encipher">Encipher an Image</a> • <a href="cipher.html#decipher">Decipher an Image</a> • <a href="cipher.html#caveats">Encipher and Decipher Caveats</a></p>
57
58 <p class="lead magick-description">Most images, by design, are made to be viewed often and by many people.  Web images, for example, may be viewed hundreds of times a day by a multitude of vistors.  However, in some cases, you may want to keep a particular image private so that only you or perhaps a select group of your friends or web visitors can view it.  ImageMagick permits you to scramble your images such that unless someone knows your passphrase, they will be unable to view the original content.</p>
59
60 <p>You could use an <a href="http://www.wizards-toolkit.org/www/encipher.html">enciphering</a> utility to scramble your image but they typically scramble the entire file making it unrecognizable as an image format.  With ImageMagick, only the pixels are scrambled.  The scrambled image continues to be recognized as an image and will even display in your web page.  However, the content appears as gibberish, nothing like the original content.</p>
61
62 <h2 class="magick-post-title"><a id="encipher"></a>Encipher an Image</h2>
63
64 <p>Use the <a href="command-line-options.html#encipher">-encipher</a> option to scramble your image so that it is unrecognizable.  The option requires a filename that contains your passphrase.  In this example we scramble an image and save it in the PNG format:</p>
65
66 <pre><code>
67 convert rose.jpg -encipher passphrase.txt rose.png
68 </code></pre>
69
70 <p>Here we encipher an image using another image as the passphrase:</p>
71
72 <pre><code>
73 convert rose.jpg -encipher smiley.gif rose.png
74 </code></pre>
75
76 <h2 class="magick-post-title"><a id="decipher"></a>Decipher an Image</h2>
77
78 <p>Use the <a href="command-line-options.html#decipher">-decipher</a> option to unscramble your image so that it is recognizable once again.  The option requires a filename that contains your passphrase.  In this example we unscramble an image and save it in the JPEG format:</p>
79
80 <pre><code>
81 convert rose.png -decipher passphrase.txt rose.jpg
82 </code></pre>
83
84 <h2 class="magick-post-title"><a id="caveats"></a>Encipher and Decipher Caveats</h2>
85
86 <p>Some formats do not support enciphered pixels-- the JPEG or GIF format, for
87 example.  To ensure your image format is supported, encipher a test image and
88 verify you can restore its original content <var>before</var> you encipher any
89 additional images in that format.</p>
90
91 <p>The image format may only support 8-bit and RGB (TrueColor). As such you may
92 like to include the options "-depth 8 -type TrueColor" before the output
93 filename.</p>
94
95 <p>The passphrase can be any combinations of letters and symbols.  It should
96 be a minimum of 12 character combinations to help ensure your image remains
97 private.  Also make sure your passphrase file permissions prevent others from
98 reading it otherwise unintended users may be able to view the original image
99 content.</p>
100
101 <p>You can only restore the original image content if you know your
102 passphrase.  If you lose or forget it, your original image content is lost
103 forever.</p>
104
105 <p>ImageMagick only scrambles the image pixels.  The image metadata remains
106 untouched and readable by anyone with access to the image file.</p>
107
108 <p>ImageMagick uses the <a
109 href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES</a>
110 cipher in Counter mode.  We use the the first half of your passphrase to derive the nonce.  The second half is the cipher key. When used correctly, AES-CTR provides a high level of confidentiality. To avoid information leaks, you must use a fresh passphrase for each image your encrypt.</p>
111
112 <p>Currently only ImageMagick can restore your enciphered image content.  We
113 use a standard cipher and mode so other vendors could support enciphered image content.</p>
114
115 <p>Some small practical examples of image enciphering can be found in IM
116 Examples <a href="https://www.imagemagick.org/Usage/transform/#encipher"
117 >Encrypting Image Data</a>. </p>
118
119 </div>
120   <footer class="magick-footer">
121     <p><a href="support.html">Donate</a> •
122      <a href="sitemap.html">Sitemap</a> •
123     <a href="links.html">Related</a> •
124     <a href="security-policy.html">Security</a> •
125     <a href="architecture.html">Architecture</a>
126 </p>
127     <p><a href="cipher.html#">Back to top</a> •
128     <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
129     <a href="https://www.imagemagick.org/script/contact.php">Contact Us</a></p>
130         <p><small>© 1999-2017 ImageMagick Studio LLC</small></p>
131   </footer>
132 </div><!-- /.container -->
133
134   <script src="https://localhost/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
135   <script src="../js/magick.html"></script>
136 </body>
137 </html>
138 <!-- Magick Cache 30th July 2017 18:15 -->