Tabnine Logo
PdfPKCS7.verifyCertificate
Code IndexAdd Tabnine to your IDE (free)

How to use
verifyCertificate
method
in
com.lowagie.text.pdf.PdfPKCS7

Best Java code snippets using com.lowagie.text.pdf.PdfPKCS7.verifyCertificate (Showing top 3 results out of 315)

origin: com.github.librepdf/openpdf

for (int k = 0; k < certs.length; ++k) {
 X509Certificate cert = (X509Certificate) certs[k];
 String err = verifyCertificate(cert, crls, calendar);
 if (err != null)
  return new Object[] { cert, err };
    X509Certificate certStoreX509 = (X509Certificate) keystore
      .getCertificate(alias);
    if (verifyCertificate(certStoreX509, crls, calendar) != null)
     continue;
    try {
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

for (int k = 0; k < certs.length; ++k) {
  X509Certificate cert = (X509Certificate)certs[k];
  String err = verifyCertificate(cert, crls, calendar);
  if (err != null)
    return new Object[]{cert, err};
          continue;
        X509Certificate certStoreX509 = (X509Certificate)keystore.getCertificate(alias);
        if (verifyCertificate(certStoreX509, crls, calendar) != null)
          continue;
        try {
origin: es.gob.afirma/afirma-crypto-pdf-itext

final String err = verifyCertificate(cert, crls, calendar);
if (err != null) {
  return new Object[]{cert, err};
      if (verifyCertificate(certStoreX509, crls, calendar) != null) {
        continue;
com.lowagie.text.pdfPdfPKCS7verifyCertificate

Javadoc

Verifies a single certificate.

Popular methods of PdfPKCS7

  • <init>
    Verifies a signature using the sub-filter adbe.x509.rsa_sha1.
  • buildUnauthenticatedAttributes
    Added by Aiken Sam, 2006-11-15, modifed by Martin Brunecky 07/12/2007 to start with the timeStampTok
  • findOcsp
  • getAlgorithm
    Gets the algorithm name for a certain id.
  • getAuthenticatedAttributeSet
  • getDigest
    Gets the digest name for a certain id
  • getDigestAlgorithm
    Get the algorithm used to calculate the message digest
  • getEncodedPKCS1
    Gets the bytes for the PKCS#1 object.
  • getEncodedPKCS7
    Gets the bytes for the PKCS7SignedData object. Optionally the authenticatedAttributes in the signerI
  • getExtensionValue
  • getHashAlgorithm
    Returns the algorithm.
  • getIssuer
    Get the "issuer" from the TBSCertificate bytes that are passed in
  • getHashAlgorithm,
  • getIssuer,
  • getSignCertificateChain,
  • getSigningCertificate,
  • getStringFromGeneralName,
  • getSubject,
  • getSubjectFields,
  • loadCacertsKeyStore,
  • setExternalDigest,
  • setLocation

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • compareTo (BigDecimal)
  • getExternalFilesDir (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JComboBox (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now