当前位置: 首页>>代码示例>>PHP>>正文


PHP Math_BigInteger::toBits方法代码示例

本文整理汇总了PHP中Math_BigInteger::toBits方法的典型用法代码示例。如果您正苦于以下问题:PHP Math_BigInteger::toBits方法的具体用法?PHP Math_BigInteger::toBits怎么用?PHP Math_BigInteger::toBits使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Math_BigInteger的用法示例。


在下文中一共展示了Math_BigInteger::toBits方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getSize

 /**
  * Returns the key size
  *
  * More specifically, this returns the size of the modulo in bits.
  *
  * @access public
  * @return Integer
  */
 function getSize()
 {
     return !isset($this->modulus) ? 0 : strlen($this->modulus->toBits());
 }
开发者ID:macconsultinggroup,项目名称:WordPress,代码行数:12,代码来源:RSA.php

示例2: while

 /**
  * RSASSA-PSS-VERIFY
  *
  * See {@link http://tools.ietf.org/html/rfc3447#section-8.1.2 RFC3447#section-8.1.2}.
  *
  * @access private
  * @param String $m
  * @param String $s
  * @return String
  */
 function _rsassa_pss_verify($m, $s)
 {
     // Length checking
     if (strlen($s) > $this->k) {
         user_error('Invalid signature', E_USER_NOTICE);
         return false;
     }
     //   add leading zeros if missing added by Pfeffer
     while (strlen($s) < $this->k) {
         $s = chr(0) . $s;
     }
     // RSA verification
     $tmp = $this->modulus->toBits();
     $modBits = strlen($tmp);
     // by Pfeffer, has been: 8 * $this->k;
     $s2 = $this->_os2ip($s);
     $m2 = $this->_rsavp1($s2);
     if ($m2 === false) {
         user_error('Invalid signature', E_USER_NOTICE);
         return false;
     }
     $tmp = $modBits / 8;
     // by pfeffer, has been: $modBits >> 3
     $em = $this->_i2osp($m2, ceil($tmp));
     if ($em === false) {
         user_error('Invalid signature', E_USER_NOTICE);
         return false;
     }
     // EMSA-PSS verification
     return $this->_emsa_pss_verify($m, $em, $modBits - 1);
 }
开发者ID:ppschweiz,项目名称:vvvote,代码行数:41,代码来源:RSA.php


注:本文中的Math_BigInteger::toBits方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。