Lines Matching defs:signature

84     public static final String SIGNATURE = "signature";
114 // x509.signature
125 protected byte[] signature = null;
152 * the signature of this certificate. Null if the certificate has not
158 * successfully verify the signature of this certificate, or the
397 * @exception NoSuchAlgorithmException on unsupported signature
400 * @exception SignatureException on signature errors.
419 * @exception NoSuchAlgorithmException on unsupported signature
423 * @exception SignatureException on signature errors.
446 // Verify the signature ...
459 verificationResult = sigVerf.verify(signature);
470 * verification key provided. This method uses the signature verification
479 * @exception NoSuchAlgorithmException on unsupported signature
482 * @exception SignatureException on signature errors.
491 // Verify the signature ...
504 verificationResult = sigVerf.verify(signature);
526 * (associating a signature algorithm and an X.500 name).
531 * @param algorithm the name of the signature algorithm used.
534 * @exception NoSuchAlgorithmException on unsupported signature
537 * @exception SignatureException on signature errors.
548 * (associating a signature algorithm and an X.500 name).
553 * @param algorithm the name of the signature algorithm used.
556 * @exception NoSuchAlgorithmException on unsupported signature
560 * @exception SignatureException on signature errors.
591 // Create and encode the signature itself.
593 signature = sigEngine.sign();
594 tmp.putBitString(signature);
687 if (signature != null)
688 return signature.clone();
777 signature = null;
814 if (info == null || algId == null || signature == null)
824 sb.append(" Signature:\n" + encoder.encodeBuffer(signature));
1006 * This can be used to verify the signature independently.
1021 * @return the signature.
1024 if (signature == null)
1026 byte[] dup = new byte[signature.length];
1027 System.arraycopy(signature, 0, dup, 0, dup.length);
1032 * Gets the signature algorithm name for the certificate
1033 * signature algorithm.
1036 * @return the signature algorithm name.
1045 * Gets the signature algorithm OID string from the certificate.
1048 * @return the signature algorithm oid string.
1058 * Gets the DER encoded signature algorithm parameters from this
1059 * certificate's signature algorithm.
1061 * @return the DER encoded signature algorithm parameters, or
1780 * - The signature bits
1782 * This routine unmarshals the certificate, saving the signature
1798 * - The signature bits
1800 * This routine unmarshals the certificate, saving the signature
1832 signature = seq[2].getBitString();
1843 // the "inner" and "outer" signature algorithms must match
1871 tmp = tbsIn.getDerValue(); // skip signature