Lines Matching defs:algorithm

178      * the preferred provider order for the specified algorithm. This
633 * Creates a <code>DigestMethod</code> for the specified algorithm URI
636 * @param algorithm the URI identifying the digest algorithm
637 * @param params algorithm-specific digest parameters (may be
641 * are inappropriate for the requested algorithm
643 * specified algorithm cannot be found
644 * @throws NullPointerException if <code>algorithm</code> is
647 public abstract DigestMethod newDigestMethod(String algorithm,
652 * Creates a <code>SignatureMethod</code> for the specified algorithm URI
655 * @param algorithm the URI identifying the signature algorithm
656 * @param params algorithm-specific signature parameters (may be
660 * are inappropriate for the requested algorithm
662 * specified algorithm cannot be found
663 * @throws NullPointerException if <code>algorithm</code> is
666 public abstract SignatureMethod newSignatureMethod(String algorithm,
671 * Creates a <code>Transform</code> for the specified algorithm URI
674 * @param algorithm the URI identifying the transform algorithm
675 * @param params algorithm-specific transform parameters (may be
679 * are inappropriate for the requested algorithm
681 * specified algorithm cannot be found
682 * @throws NullPointerException if <code>algorithm</code> is
685 public abstract Transform newTransform(String algorithm,
690 * Creates a <code>Transform</code> for the specified algorithm URI
696 * @param algorithm the URI identifying the transform algorithm
704 * are inappropriate for the requested algorithm
706 * specified algorithm cannot be found
707 * @throws NullPointerException if <code>algorithm</code> is
710 public abstract Transform newTransform(String algorithm,
716 * algorithm URI and parameters.
718 * @param algorithm the URI identifying the canonicalization algorithm
719 * @param params algorithm-specific canonicalization parameters (may be
723 * are inappropriate for the requested algorithm
725 * specified algorithm cannot be found
726 * @throws NullPointerException if <code>algorithm</code> is
730 String algorithm, C14NMethodParameterSpec params)
735 * algorithm URI and parameters. The parameters are specified as a
740 * @param algorithm the URI identifying the canonicalization algorithm
748 * are inappropriate for the requested algorithm
750 * specified algorithm cannot be found
751 * @throws NullPointerException if <code>algorithm</code> is
755 String algorithm, XMLStructure params)