9091929394959697
SignatureOptions options) throws SecurityException { try { return (T) _sign(entry, options); } catch (Exception e) { throw new SecurityException(e); } }
193194195196197198199200
SignatureOptions options) throws SecurityException { if (!isSigned(entry)) return false; try { return _verify(entry,options); } catch (Exception e) { throw new SecurityException(e); } }
6970717273747576
encdata.setKeyInfo(keyInfo); } dom = xmlCipher.doFinal(dom, dom.getDocumentElement(), false); return domToFom(dom, options); } catch (Exception e) { throw new SecurityException(e); } }
8889909192939495
xmlCipher.init(XMLCipher.DECRYPT_MODE, dek); xmlCipher.setKEK(kek); dom = xmlCipher.doFinal(dom, element); return domToFom(dom, options); } catch (Exception e) { throw new SecurityException(e); } }
8990919293949596
192193194195196197198199
113114115116117118119120
245246247248249250251252