Package org.bouncycastle.cms

Examples of org.bouncycastle.cms.CMSProcessableFile


    /**
     * Genera il file p7m e lo salva nel path specificato.
     * Inserendo "false" come secondo parametro di generate() si
     * otterrebbe invece un file p7s, ovvero la sola firma "detached".
     */
    CMSProcessableFile content = new CMSProcessableFile(fileInput);
    CMSSignedData data = gen.generate(content, true);
    byte[] res = data.getEncoded();
    FileOutputStream fos = new FileOutputStream(fileFirmato);
    fos.write(res);
    fos.close();
View Full Code Here

TOP

Related Classes of org.bouncycastle.cms.CMSProcessableFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.