<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/openssl.constants.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'openssl.constants.other.php',
    1 => 'その他の定数',
    2 => 'その他の定数',
  ),
  'up' => 
  array (
    0 => 'openssl.constants.php',
    1 => '定義済み定数',
  ),
  'prev' => 
  array (
    0 => 'openssl.constsni.php',
    1 => 'Server Name Indication 定数',
  ),
  'next' => 
  array (
    0 => 'openssl.certparams.php',
    1 => 'キー/証明書パラメータ',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/openssl/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="openssl.constants.other" class="section">
  <h2 class="title">その他の定数</h2>
  <dl>
    
      <dt id="constant.openssl-raw-data">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-raw-data">OPENSSL_RAW_DATA</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span> や <span class="function"><a href="function.openssl-decrypt.php" class="function">openssl_decrypt()</a></span> 関数で
         この値が設定されると、生のデータがそのまま返されます。
         設定されない場合、Base64 エンコードされたデータが呼び出し側に返されます。
        </span>
      </dd>
    
    
      <dt id="constant.openssl-dont-zero-pad-key">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-dont-zero-pad-key">OPENSSL_DONT_ZERO_PAD_KEY</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         デフォルトのキーの長さより短いキーについて
         <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span>
         がパディングを行わないようにします。
        </span>
      </dd>
    
    
      <dt id="constant.openssl-zero-padding">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-zero-padding">OPENSSL_ZERO_PADDING</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         デフォルトでは、暗号化の操作は標準的なブロックパディングを使ってパディングされ、
         追加されたパディングは、復号化される際にチェックされ、除去されます。
         <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span> や <span class="function"><a href="function.openssl-decrypt.php" class="function">openssl_decrypt()</a></span> の
         <code class="parameter">options</code> に <strong><code><a href="openssl.constants.other.php#constant.openssl-zero-padding">OPENSSL_ZERO_PADDING</a></code></strong>
         が指定された場合、パディングは行われないので、
         暗号化または復号化されるデータの総量はブロックサイズの倍数でなければなりません。
         そうでない場合、エラーが発生します。
        </span>
      </dd>
    
    
      <dt id="constant.openssl-encoding-smime">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-encoding-smime">OPENSSL_ENCODING_SMIME</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         エンコーディングが S/MIME 形式であることを示します。
        </span>
      </dd>
    
    
      <dt id="constant.openssl-encoding-der">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-encoding-der">OPENSSL_ENCODING_DER</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         エンコーディングが <abbr title="Distinguished Encoding Rules">DER</abbr>
         形式であることを示します。
        </span>
      </dd>
    
    
      <dt id="constant.openssl-encoding-pem">
       <strong><code><a href="openssl.constants.other.php#constant.openssl-encoding-pem">OPENSSL_ENCODING_PEM</a></code></strong>
       (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
      </dt>
      <dd>
        <span class="simpara">
         エンコーディングが <abbr title="Privacy-Enhanced Mail">PEM</abbr>
         形式であることを示します。
        </span>
      </dd>
    
  </dl>
 </div><?php manual_footer($setup); ?>