Package com.google.k2crypto.keyversions.KeyVersionProto

Examples of com.google.k2crypto.keyversions.KeyVersionProto.KeyVersionData


   * Initializes the KeyVersion.
   *
   * @param builder Builder, possibly with serialized data.
   */
  protected KeyVersion(Builder builder) {
    KeyVersionData data = builder.kvData;
    if (data != null) {
      // Extract the core (important stuff)
      coreBytes = data.getCore();
      // Extract other fields if necessary
    }
  }
View Full Code Here

TOP

Related Classes of com.google.k2crypto.keyversions.KeyVersionProto.KeyVersionData

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.