Searched refs:signContext (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignature.java159 * the <code>signContext</code> parameter will be left in the state that
162 * @param signContext the signing context
163 * @throws ClassCastException if the type of <code>signContext</code> is
165 * @throws NullPointerException if <code>signContext</code> is
171 void sign(XMLSignContext signContext) throws MarshalException, argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignature.java318 public void sign(XMLSignContext signContext) argument
320 if (signContext == null) {
321 throw new NullPointerException("signContext cannot be null");
323 DOMSignContext context = (DOMSignContext) signContext;
367 digestReference(ref, signContext);
376 ref.digest(signContext);
382 ksr = signContext.getKeySelector().select
384 si.getSignatureMethod(), signContext);
398 (signingKey, (DOMSignedInfo) si, signContext);
434 private void digestReference(DOMReference ref, XMLSignContext signContext) argument
[all...]
H A DDOMReference.java334 public void digest(XMLSignContext signContext) argument
338 data = dereference(signContext);
342 digestValue = transform(data, signContext);

Completed in 31 milliseconds