ckey.setComputedKeyValue(val.getNodeValue());
} else {
throw new WSTrustException("Parser Exception");
}
} else if (el.equals(BinarySecret.TOKEN)) {
this.binSecret = new BinarySecret(elem);
Node val = elem.getChildNodes().item(0);
if (val.getNodeType() == Node.TEXT_NODE) {
binSecret.setValue(val.getNodeValue());
} else {
throw new WSTrustException("Parser Exception");