Package org.apache.poi.poifs.crypt.agile.AgileEncryptionVerifier

Examples of org.apache.poi.poifs.crypt.agile.AgileEncryptionVerifier.AgileCertificateEntry


        AgileEncryptionHeader header = builder.getHeader();
        HashAlgorithm hashAlgo = header.getHashAlgorithmEx();
        CipherAlgorithm cipherAlgo = header.getCipherAlgorithm();
        int blockSize = header.getBlockSize();
       
        AgileCertificateEntry ace = null;
        for (AgileCertificateEntry aceEntry : ver.getCertificates()) {
            if (x509.equals(aceEntry.x509)) {
                ace = aceEntry;
                break;
            }
View Full Code Here

TOP

Related Classes of org.apache.poi.poifs.crypt.agile.AgileEncryptionVerifier.AgileCertificateEntry

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.