Examples of KeyVersionData


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
Copyright © 2018 www.massapi.com. 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.