Package org.jose4j.zip

Examples of org.jose4j.zip.DeflateRFC1951CompressionAlgorithm


        jweContentEncryptionAlgorithmFactory.registerAlgorithm(new AesGcmContentEncryptionAlgorithm.Aes256Gcm());

        log.info("JWE content encryption algorithms: " + jweContentEncryptionAlgorithmFactory.getSupportedAlgorithms());

        compressionAlgorithmFactory = new AlgorithmFactory<>(HeaderParameterNames.ZIP, CompressionAlgorithm.class);
        compressionAlgorithmFactory.registerAlgorithm(new DeflateRFC1951CompressionAlgorithm());

        log.info("JWE compression algorithms: " + compressionAlgorithmFactory.getSupportedAlgorithms());
        log.info("Initialized jose4j in " + (System.currentTimeMillis() - startTime) + "ms");
    }
View Full Code Here

TOP

Related Classes of org.jose4j.zip.DeflateRFC1951CompressionAlgorithm

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.