Lines Matching defs:signature

90     public static final String SIGNATURE = "signature";
122 // x509.signature
133 protected byte[] signature = null;
160 * the signature of this certificate. Null if the certificate has not
166 * successfully verify the signature of this certificate, or the
390 * @exception NoSuchAlgorithmException on unsupported signature
393 * @exception SignatureException on signature errors.
412 * @exception NoSuchAlgorithmException on unsupported signature
416 * @exception SignatureException on signature errors.
439 // Verify the signature ...
452 verificationResult = sigVerf.verify(signature);
463 * (associating a signature algorithm and an X.500 name).
468 * @param algorithm the name of the signature algorithm used.
471 * @exception NoSuchAlgorithmException on unsupported signature
474 * @exception SignatureException on signature errors.
485 * (associating a signature algorithm and an X.500 name).
490 * @param algorithm the name of the signature algorithm used.
493 * @exception NoSuchAlgorithmException on unsupported signature
497 * @exception SignatureException on signature errors.
528 // Create and encode the signature itself.
530 signature = sigEngine.sign();
531 tmp.putBitString(signature);
624 if (signature != null)
625 return signature.clone();
714 signature = null;
751 if (info == null || algId == null || signature == null)
761 sb.append(" Signature:\n" + encoder.encodeBuffer(signature));
945 * This can be used to verify the signature independently.
960 * @return the signature.
963 if (signature == null)
965 byte[] dup = new byte[signature.length];
966 System.arraycopy(signature, 0, dup, 0, dup.length);
971 * Gets the signature algorithm name for the certificate
972 * signature algorithm.
975 * @return the signature algorithm name.
984 * Gets the signature algorithm OID string from the certificate.
987 * @return the signature algorithm oid string.
997 * Gets the DER encoded signature algorithm parameters from this
998 * certificate's signature algorithm.
1000 * @return the DER encoded signature algorithm parameters, or
1747 * - The signature bits
1749 * This routine unmarshals the certificate, saving the signature
1779 signature = seq[2].getBitString();
1790 // the "inner" and "outer" signature algorithms must match
1818 tmp = tbsIn.getDerValue(); // skip signature