congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
SignedData.getCertificates
Code IndexAdd Tabnine to your IDE (free)

How to use
getCertificates
method
in
org.spongycastle.asn1.cms.SignedData

Best Java code snippets using org.spongycastle.asn1.cms.SignedData.getCertificates (Showing top 5 results out of 315)

origin: com.madgag.spongycastle/pkix

/**
 * Return any X.509 attribute certificate objects in this SignedData structure as a Store of X509AttributeCertificateHolder objects.
 *
 * @return a Store of X509AttributeCertificateHolder objects.
 */
public Store getAttributeCertificates()
{
  return HELPER.getAttributeCertificates(signedData.getCertificates());
}
origin: com.madgag.spongycastle/bcpkix-jdk15on

/**
 * Return any X.509 certificate objects in this SignedData structure as a Store of X509CertificateHolder objects.
 *
 * @return a Store of X509CertificateHolder objects.
 */
public Store<X509CertificateHolder> getCertificates()
{
  return HELPER.getCertificates(signedData.getCertificates());
}
origin: com.madgag.spongycastle/pkix

/**
 * Return any X.509 certificate objects in this SignedData structure as a Store of X509CertificateHolder objects.
 *
 * @return a Store of X509CertificateHolder objects.
 */
public Store getCertificates()
{
  return HELPER.getCertificates(signedData.getCertificates());
}
origin: com.madgag.spongycastle/bcpkix-jdk15on

/**
 * Return any X.509 attribute certificate objects in this SignedData structure as a Store of X509AttributeCertificateHolder objects.
 *
 * @return a Store of X509AttributeCertificateHolder objects.
 */
public Store<X509AttributeCertificateHolder> getAttributeCertificates()
{
  return HELPER.getAttributeCertificates(signedData.getCertificates());
}
origin: es.gob.afirma/afirma-crypto-core-pkcs7

final SignedData sd = SignedData.getInstance(contentSignedData);
signerInfosSd = sd.getSignerInfos();
certificates = sd.getCertificates();
org.spongycastle.asn1.cmsSignedDatagetCertificates

Popular methods of SignedData

  • <init>
  • getInstance
    Return a SignedData object from the given object. Accepted inputs: * null → null * SignedData obj
  • getSignerInfos
  • getEncapContentInfo
  • calculateVersion
  • checkForVersion3
  • getCRLs
  • getDigestAlgorithms
  • getVersion
  • toASN1Primitive
    Produce an object suitable for an ASN1OutputStream. SignedData ::= SEQUENCE { version CMSVersion,

Popular in Java

  • Reactive rest calls using spring rest template
  • compareTo (BigDecimal)
  • startActivity (Activity)
  • runOnUiThread (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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