Lines Matching defs:signature

63  *     signature            BIT STRING  }
74 * signature AlgorithmIdentifier,
96 private byte[] signature = null; // raw signature bits
117 * the signature of this CRL. Null if the CRL has not
123 * successfully verify the signature of this CRL, or the
335 * @exception NoSuchAlgorithmException on unsupported signature
339 * @exception SignatureException on signature errors.
351 * and that the signature verification was computed by
355 * @param sigProvider the name of the signature provider.
357 * @exception NoSuchAlgorithmException on unsupported signature
361 * @exception SignatureException on signature errors.
395 if (!sigVerf.verify(signature)) {
405 * and that the signature verification was computed by
410 * @param sigProvider the signature provider.
412 * @exception NoSuchAlgorithmException on unsupported signature
415 * @exception SignatureException on signature errors.
439 if (!sigVerf.verify(signature)) {
467 * @param algorithm the name of the signature algorithm used.
469 * @exception NoSuchAlgorithmException on unsupported signature
473 * @exception SignatureException on signature errors.
486 * @param algorithm the name of the signature algorithm used.
489 * @exception NoSuchAlgorithmException on unsupported signature
493 * @exception SignatureException on signature errors.
523 // Create and encode the signature itself.
525 signature = sigEngine.sign();
526 tmp.putBitString(signature);
592 if (signature != null) {
594 sb.append("\nSignature:\n" + encoder.encodeBuffer(signature)
743 * This can be used to verify the signature independently.
759 * @return the signature.
762 if (signature == null)
764 byte[] dup = new byte[signature.length];
765 System.arraycopy(signature, 0, dup, 0, dup.length);
770 * Gets the signature algorithm name for the CRL
771 * signature algorithm. For example, the string "SHA1withDSA".
782 * @return the signature algorithm name.
791 * Gets the signature algorithm OID string from the CRL.
796 * with DSA signature algorithm defined in
801 * @return the signature algorithm oid string.
811 * Gets the DER encoded signature algorithm parameters from this
812 * CRL's signature algorithm. In most cases, the signature
816 * @return the DER encoded signature algorithm parameters, or
830 * Gets the signature AlgorithmId from the CRL.
832 * @return the signature AlgorithmId
1089 signature = seq[2].getBitString();
1115 // signature
1118 // the "inner" and "outer" signature algorithms must match
1206 tmp = tbsIn.getDerValue(); // skip signature