web-dev-qa-db-fra.com

Extraire le contenu du fichier PKCS7 dans Java

J'ai une signature de PKCS # 7 qui ont le type de contenu données signées et il intégre un document XML, et je dois extraire le document XML à partir de ce fichier PKCS7.

Quelqu'un sache comment faire cela dans Java ??

3
Hakim

Enfin je l'ai fait avec Bouncycastle Bibliothèque.

PKCS n ° 7 est un format complexe, également appelé CMS. Sun JCE n'a aucun soutien direct à PKCS # 7.

C'est le code que j'ai utilisé pour extraire mon contenu:

// Loading the file first
   File f = new File("myFile.p7b");
   byte[] buffer = new byte[(int) f.length()];
   DataInputStream in = new DataInputStream(new FileInputStream(f));
   in.readFully(buffer);
   in.close();

   //Corresponding class of signed_data is CMSSignedData
   CMSSignedData signature = new CMSSignedData(buffer);
   Store cs = signature.getCertificates();
   SignerInformationStore signers = signature.getSignerInfos();
   Collection c = signers.getSigners();
   Iterator it = c.iterator();

   //the following array will contain the content of xml document
   byte[] data = null;

   while (it.hasNext()) {
        SignerInformation signer = (SignerInformation) it.next();
        Collection certCollection = cs.getMatches(signer.getSID());
        Iterator certIt = certCollection.iterator();
        X509CertificateHolder cert = (X509CertificateHolder) certIt.next();

        CMSProcessable sc = signature.getSignedContent();
        data = (byte[]) sc.getContent();
    }

Si vous souhaitez vérifier la signature de ce fichier PKCS7 contre le certificat X509, vous devez ajouter le code suivant à la boucle TIX:

// ************************************************************* //
// ********************* Verify signature ********************** //
//get CA public key
// Create a X509 certificat
CertificateFactory certificatefactory = CertificateFactory.getInstance("X.509");

// Open the certificate file
FileInputStream fileinputstream = new FileInputStream("myCA.cert");

//get CA public key
PublicKey pk = certificatefactory.generateCertificate(fileinputstream).getPublicKey();

X509Certificate myCA = new JcaX509CertificateConverter().setProvider("BC").getCertificate(cert);

myCA.verify(pk);
System.out.println("Verfication done successfully ");
2
Hakim