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)) {
406 * @param algorithm the name of the signature algorithm used.
408 * @exception NoSuchAlgorithmException on unsupported signature
412 * @exception SignatureException on signature errors.
425 * @param algorithm the name of the signature algorithm used.
428 * @exception NoSuchAlgorithmException on unsupported signature
432 * @exception SignatureException on signature errors.
462 // Create and encode the signature itself.
464 signature = sigEngine.sign();
465 tmp.putBitString(signature);
531 if (signature != null) {
533 sb.append("\nSignature:\n" + encoder.encodeBuffer(signature)
682 * This can be used to verify the signature independently.
698 * @return the signature.
701 if (signature == null)
703 byte[] dup = new byte[signature.length];
704 System.arraycopy(signature, 0, dup, 0, dup.length);
709 * Gets the signature algorithm name for the CRL
710 * signature algorithm. For example, the string "SHA1withDSA".
721 * @return the signature algorithm name.
730 * Gets the signature algorithm OID string from the CRL.
735 * with DSA signature algorithm defined in
740 * @return the signature algorithm oid string.
750 * Gets the DER encoded signature algorithm parameters from this
751 * CRL's signature algorithm. In most cases, the signature
755 * @return the DER encoded signature algorithm parameters, or
769 * Gets the signature AlgorithmId from the CRL.
771 * @return the signature AlgorithmId
1027 signature = seq[2].getBitString();
1053 // signature
1056 // the "inner" and "outer" signature algorithms must match
1144 tmp = tbsIn.getDerValue(); // skip signature