Lines Matching refs:objKey
508 if (! $objKey = $objenc->locateKey()) {
511 $objKey->isEncrypted = true;
512 $objKey->encryptedCtx = $objenc;
513 XMLSecEnc::staticLocateKeyInfo($objKey, $element);
514 return $objKey;
1067 $objKey = new XMLSecurityKey($algorithm, array('type'=>'public'));
1071 return $objKey;
1077 public function verify($objKey) { argument
1086 return $objKey->verifySignature($this->signedInfo, base64_decode($sigValue));
1089 public function signData($objKey, $data) { argument
1090 return $objKey->signData($data);
1093 public function sign($objKey, $appendToNode = null) { argument
1107 $sMethod->setAttribute('Algorithm', $objKey->type);
1109 $sigValue = base64_encode($this->signData($objKey, $data));
1124 public function appendKey($objKey, $parent=null) { argument
1125 $objKey->serializeKey($parent);
1624 $objKey = new XMLSecurityKey($attrAlgorithm, array('type'=>'private'));
1628 return $objKey;