Package org.hdiv.cipher

Examples of org.hdiv.cipher.CipherHTTP


  public ICipherHTTP cipherHTTP() {

    SecurityConfigBuilder builder = this.securityConfigBuilder();
    CipherConfigure config = builder.getCipherConfigure();

    CipherHTTP cipherHTTP = new CipherHTTP();
    if (config.getProvider() != null) {
      cipherHTTP.setProvider(config.getProvider());
    }
    if (config.getTransformation() != null) {
      cipherHTTP.setTransformation(config.getTransformation());
    }
    cipherHTTP.init();
    return cipherHTTP;
  }
View Full Code Here

TOP

Related Classes of org.hdiv.cipher.CipherHTTP

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.