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");
}