<?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 => 'es',
  ),
  'this' => 
  array (
    0 => 'openssl.constants.other.php',
    1 => 'Otras constantes',
    2 => 'Otras constantes',
  ),
  'up' => 
  array (
    0 => 'openssl.constants.php',
    1 => 'Constantes predefinidas',
  ),
  'prev' => 
  array (
    0 => 'openssl.constsni.php',
    1 => 'Constantes de identificaci&oacute;n del nombre del servidor',
  ),
  'next' => 
  array (
    0 => 'openssl.certparams.php',
    1 => 'Par&aacute;metros de claves/certificados',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'es',
    '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">Otras constantes</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">
      Si <strong><code><a href="openssl.constants.other.php#constant.openssl-raw-data">OPENSSL_RAW_DATA</a></code></strong> está definida en
      <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span> o <span class="function"><a href="function.openssl-decrypt.php" class="function">openssl_decrypt()</a></span>,
      los datos devueltos se devuelven tal cual.
      Cuando esto no está especificado, los datos devueltos al llamador están
      codificados en 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">
         Impide que <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span> rellene las claves
         que son más cortas que la longitud de clave por defecto.
        </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">
         Por defecto, las operaciones de cifrado se completan utilizando
         bloques estándar y el relleno se verifica y elimina
         al descifrar. Si la constante <strong><code><a href="openssl.constants.other.php#constant.openssl-zero-padding">OPENSSL_ZERO_PADDING</a></code></strong>
         está definida en el argumento <code class="parameter">options</code> de la función
         <span class="function"><a href="function.openssl-encrypt.php" class="function">openssl_encrypt()</a></span> o <span class="function"><a href="function.openssl-decrypt.php" class="function">openssl_decrypt()</a></span>
         entonces no se realizará ningún relleno, la cantidad total
         de datos cifrados deberá ser entonces un múltiplo del tamaño del bloque
         o bien se producirá un error.
        </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">
      Indica que la codificación es 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">
      Indica que la codificación es DER (Distinguished Encoding Rules).
     </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">
      Indica que la codificación es PEM (Privacy-Enhanced Mail).
     </span>
    </dd>
   
  </dl>
 </div><?php manual_footer($setup); ?>