Package org.platformlayer.ops.crypto

Examples of org.platformlayer.ops.crypto.ManagedSecretKey


    if (caPath == null) {
      return null;
    }

    ItemBase sslKeyItem = (ItemBase) platformLayer.getItem(caPath);
    ManagedSecretKey key = providers.toInterface(sslKeyItem, ManagedSecretKey.class);

    return key;
  }
View Full Code Here


  public ManagedSecretKey findPublicSslKey() throws OpsException {
    PlatformLayerKey sslKey = getSslKeyPath();
    if (sslKey == null) {
      if (getCaPath() != null) {
        ManagedSecretKey key = findCaSignedKey("public");
        if (key != null) {
          return key;
        }
      }

      return null;
    }
    ItemBase sslKeyItem = (ItemBase) platformLayer.getItem(sslKey);
    ManagedSecretKey key = providers.toInterface(sslKeyItem, ManagedSecretKey.class);
    return key;
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.crypto.ManagedSecretKey

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.