Lines Matching refs:XMLSecurityKey
1076 $seckey = new XMLSecurityKey(XMLSecurityKey::RSA_1_5, array('type'=>'public'));
1083 $symmetricKey = new XMLSecurityKey(XMLSecurityKey::AES128_CBC);
1154 * @param XMLSecurityKey $inputKey The decryption key.
1161 …public static function decryptElement(DOMElement $encryptedData, XMLSecurityKey $inputKey, $format…
1189 …if ($symKeyInfoAlgo === XMLSecurityKey::RSA_OAEP_MGF1P && $inputKeyAlgo === XMLSecurityKey::RSA_1_…
1190 $inputKeyAlgo = XMLSecurityKey::RSA_OAEP_MGF1P;
1272 * @param XMLSecurityKey $key The key.
1276 * @return XMLSecurityKey The new key.
1280 public static function castKey(XMLSecurityKey $key, $algorithm, $type = 'public')
1300 $newKey = new XMLSecurityKey($algorithm, array('type'=>$type));
1315 XMLSecurityKey::RSA_1_5,
1316 XMLSecurityKey::RSA_SHA1,
1317 XMLSecurityKey::RSA_SHA256,
1318 XMLSecurityKey::RSA_SHA384,
1319 XMLSecurityKey::RSA_SHA512
1337 …public static function addSign($xml, $key, $cert, $signAlgorithm = XMLSecurityKey::RSA_SHA1, $dige…
1350 $objKey = new XMLSecurityKey($signAlgorithm, array('type' => 'private'));