本文整理汇总了PHP中Crypt_RSA::_convertPublicKey方法的典型用法代码示例。如果您正苦于以下问题:PHP Crypt_RSA::_convertPublicKey方法的具体用法?PHP Crypt_RSA::_convertPublicKey怎么用?PHP Crypt_RSA::_convertPublicKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crypt_RSA
的用法示例。
在下文中一共展示了Crypt_RSA::_convertPublicKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: toKey
function toKey()
{
switch ($this->components['kty']) {
case 'RSA':
$rsa = new Crypt_RSA();
$n = new Math_BigInteger('0x' . bin2hex(JOSE_URLSafeBase64::decode($this->components['n'])), 16);
$e = new Math_BigInteger('0x' . bin2hex(JOSE_URLSafeBase64::decode($this->components['e'])), 16);
if (array_key_exists('d', $this->components)) {
throw new JOSE_Exception_UnexpectedAlgorithm('RSA private key isn\'t supported');
} else {
$pem_string = $rsa->_convertPublicKey($n, $e);
}
$rsa->loadKey($pem_string);
return $rsa;
default:
throw new JOSE_Exception_UnexpectedAlgorithm('Unknown key type');
}
}
示例2: buildPublicKey
/**
* @param \Math_BigInteger $n
* @param \Math_BigInteger $e
* @return RSAPublicKey
*/
public function buildPublicKey(\Math_BigInteger $n, \Math_BigInteger $e)
{
$public_key_pem = $this->rsa_imp->_convertPublicKey($n, $e);
return new _RSAPublicKeyPEMFornat($public_key_pem);
}