Home | History | Annotate | Download | only in www
      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,minimum-scale=1,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="Use ImageMagick to create, edit, compose, or convert bitmap images. You can resize your image, crop it, change its shades and colors, add captions, among other operations." />
     13   <meta name="application-url" content="https://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-2019 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="cipher.html" rel="canonical" />
     27   <link href="../images/wand.png" rel="icon" />
     28   <link href="../images/wand.ico" rel="shortcut icon" />
     29   <link href="assets/magick.css" rel="stylesheet" />
     30 </head>
     31 <body>
     32   <header>
     33   <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
     34     <a class="navbar-brand" href="../"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
     35     <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsMagick" aria-controls="navbarsMagick" aria-expanded="false" aria-label="Toggle navigation">
     36       <span class="navbar-toggler-icon"></span>
     37     </button>
     38 
     39     <div class="navbar-collapse collapse" id="navbarsMagick" style="">
     40     <ul class="navbar-nav mr-auto">
     41       <li class="nav-item ">
     42         <a class="nav-link" href="api/quantize.html">Home <span class="sr-only">(current)</span></a>
     43       </li>
     44       <li class="nav-item ">
     45         <a class="nav-link" href="../www/download.html">Download</a>
     46       </li>
     47       <li class="nav-item ">
     48         <a class="nav-link" href="../www/command-line-tools.html">Tools</a>
     49       </li>
     50       <li class="nav-item ">
     51         <a class="nav-link" href="../www/command-line-processing.html">Command-line</a>
     52       </li>
     53       <li class="nav-item ">
     54         <a class="nav-link" href="../www/resources.html">Resources</a>
     55       </li>
     56       <li class="nav-item ">
     57         <a class="nav-link" href="../www/develop.html">Develop</a>
     58       </li>
     59       <li class="nav-item">
     60         <a class="nav-link" target="_blank" href="https://imagemagick.org/discourse-server/">Community</a>
     61       </li>
     62     </ul>
     63     <form class="form-inline my-2 my-lg-0" action="https://imagemagick.org/script/search.php">
     64       <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search">
     65       <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
     66     </form>
     67     </div>
     68   </nav>
     69   <div class="container">
     70    <script async="async" src="https://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle"
     71          style="display:block"
     72          data-ad-client="ca-pub-3129977114552745"
     73          data-ad-slot="6345125851"
     74          data-ad-format="auto"></ins>
     75     <script>
     76       (adsbygoogle = window.adsbygoogle || []).push({});
     77     </script>
     78 
     79   </div>
     80   </header>
     81   <main class="container">
     82     <div class="magick-template">
     83 <div class="magick-header">
     84 <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>
     85 
     86 <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>
     87 
     88 <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>
     89 
     90 <h2><a class="anchor" id="encipher"></a>Encipher an Image</h2>
     91 
     92 <p>Use the <a href="../www/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>
     93 
     94 <pre class="highlight"><code>convert rose.jpg -encipher passphrase.txt rose.png
     95 </code></pre>
     96 
     97 <p>Here we encipher an image using another image as the passphrase:</p>
     98 
     99 <pre class="highlight"><code>convert rose.jpg -encipher smiley.gif rose.png
    100 </code></pre>
    101 
    102 <h2><a class="anchor" id="decipher"></a>Decipher an Image</h2>
    103 
    104 <p>Use the <a href="../www/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>
    105 
    106 <pre class="highlight"><code>convert rose.png -decipher passphrase.txt rose.jpg
    107 </code></pre>
    108 
    109 <h2><a class="anchor" id="caveats"></a>Encipher and Decipher Caveats</h2>
    110 
    111 <p>Some formats do not support enciphered pixels-- the JPEG or GIF format, for
    112 example.  To ensure your image format is supported, encipher a test image and
    113 verify you can restore its original content <var>before</var> you encipher any
    114 additional images in that format.</p>
    115 
    116 <p>The image format may only support 8-bit and RGB (TrueColor). As such you may
    117 like to include the options "-depth 8 -type TrueColor" before the output
    118 filename.</p>
    119 
    120 <p>The passphrase can be any combinations of letters and symbols.  It should
    121 be a minimum of 12 character combinations to help ensure your image remains
    122 private.  Also make sure your passphrase file permissions prevent others from
    123 reading it otherwise unintended users may be able to view the original image
    124 content.</p>
    125 
    126 <p>You can only restore the original image content if you know your
    127 passphrase.  If you lose or forget it, your original image content is lost
    128 forever.</p>
    129 
    130 <p>ImageMagick only scrambles the image pixels.  The image metadata remains
    131 untouched and readable by anyone with access to the image file.</p>
    132 
    133 <p>ImageMagick uses the <a
    134 href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES</a>
    135 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>
    136 
    137 <p>Currently only ImageMagick can restore your enciphered image content.  We
    138 use a standard cipher and mode so other vendors could support enciphered image content.</p>
    139 
    140 <p>Some small practical examples of image enciphering can be found in IM
    141 Examples <a href="../Usage/transform/#encipher"
    142 >Encrypting Image Data</a>. </p>
    143 
    144 </div>
    145     </div>
    146   </main><!-- /.container -->
    147   <footer class="magick-footer">
    148     <p><a href="../www/security-policy.html">Security</a> 
    149     <a href="../www/architecture.html">Architecture</a> 
    150     <a href="../www/links.html">Related</a> 
    151      <a href="../www/sitemap.html">Sitemap</a>
    152        
    153     <a href="cipher.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
    154        
    155     <a href="http://pgp.mit.edu/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> 
    156     <a href="../www/support.html">Donate</a> 
    157     <a href="../www/https://imagemagick.org/script/contact.php">Contact Us</a>
    158     <br/>
    159     <small> 1999-2019 ImageMagick Studio LLC</small></p>
    160   </footer>
    161 
    162   <!-- Javascript assets -->
    163   <script src="assets/magick.js" crossorigin="anonymous"></script>
    164   <script>window.jQuery || document.write('<script src="https://localhost/ajax/libs/jquery/3.3.1/jquery.min.js"><\/script>')</script>
    165 </body>
    166 </html>
    167