this._x509childObject =
new XMLX509SKI[this._x509childNodes.getLength()];
for (int i = 0; i < this._x509childNodes.getLength(); i++) {
this._x509childObject[i] =
new XMLX509SKI((Element) this._x509childNodes.item(i), BaseURI);
}
while (storage.hasNext()) {
X509Certificate cert = storage.next();
XMLX509SKI certSKI = new XMLX509SKI(element.getOwnerDocument(), cert);
for (int i = 0; i < this._x509childObject.length; i++) {
if (certSKI.equals(this._x509childObject[i])) {
cat.debug("Return PublicKey from "
+ cert.getSubjectDN().getName());
return cert;
}