CRYPT_RSA_ASN1_SEQUENCE shouldn't have been used

This commit is contained in:
terrafrost 2012-08-26 02:01:26 -05:00
parent 770075fe08
commit 11872fe747

View File

@ -1628,7 +1628,7 @@ class Math_BigInteger {
$RSAPublicKey = chr(3) . $this->_encodeASN1Length(strlen($RSAPublicKey)) . $RSAPublicKey;
$encapsulated = pack('Ca*a*',
CRYPT_RSA_ASN1_SEQUENCE, $this->_encodeASN1Length(strlen($rsaOID . $RSAPublicKey)), $rsaOID . $RSAPublicKey
48, $this->_encodeASN1Length(strlen($rsaOID . $RSAPublicKey)), $rsaOID . $RSAPublicKey
);
$RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" .