Lines Matching refs:XMLSecurityKey
43 class XMLSecurityKey { class
79 case (XMLSecurityKey::TRIPLEDES_CBC):
93 case (XMLSecurityKey::AES192_CBC):
107 case (XMLSecurityKey::RSA_1_5):
130 case (XMLSecurityKey::RSA_SHA1):
153 case (XMLSecurityKey::RSA_SHA384):
177 case (XMLSecurityKey::HMAC_SHA1):
216 if ($this->type === XMLSecurityKey::TRIPLEDES_CBC) {
288 case (XMLSecurityKey::AES256_CBC):
293 case (XMLSecurityKey::AES192_CBC):
404 case (XMLSecurityKey::HMAC_SHA1):
413 case (XMLSecurityKey::HMAC_SHA1):
451 $exponentEncoding = XMLSecurityKey::makeAsnSegment(0x02, $exponent);
452 $modulusEncoding = XMLSecurityKey::makeAsnSegment(0x02, $modulus);
453 … $sequenceEncoding = XMLSecurityKey:: makeAsnSegment(0x30, $modulusEncoding.$exponentEncoding);
454 $bitstringEncoding = XMLSecurityKey::makeAsnSegment(0x03, $sequenceEncoding);
456 …$publicKeyInfo = XMLSecurityKey::makeAsnSegment (0x30, $rsaAlgorithmIdentifier.$bitstringEncoding);
502 * @return XMLSecurityKey The new key.
1067 $objKey = new XMLSecurityKey($algorithm, array('type'=>'public'));
1624 $objKey = new XMLSecurityKey($attrAlgorithm, array('type'=>'private'));
1678 $publicKey = XMLSecurityKey::convertRSA($modulus, $exponent);
1703 return XMLSecurityKey::fromEncryptedKeyElement($keyElement);
1705 return XMLSecurityKey::fromEncryptedKeyElement($child);