All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.crypto.tink.proto.HpkePrivateKeyOrBuilder Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/hpke.proto

package com.google.crypto.tink.proto;

public interface HpkePrivateKeyOrBuilder extends
    // @@protoc_insertion_point(interface_extends:google.crypto.tink.HpkePrivateKey)
    com.google.protobuf.MessageOrBuilder {

  /**
   * uint32 version = 1;
   * @return The version.
   */
  int getVersion();

  /**
   * .google.crypto.tink.HpkePublicKey public_key = 2;
   * @return Whether the publicKey field is set.
   */
  boolean hasPublicKey();
  /**
   * .google.crypto.tink.HpkePublicKey public_key = 2;
   * @return The publicKey.
   */
  com.google.crypto.tink.proto.HpkePublicKey getPublicKey();
  /**
   * .google.crypto.tink.HpkePublicKey public_key = 2;
   */
  com.google.crypto.tink.proto.HpkePublicKeyOrBuilder getPublicKeyOrBuilder();

  /**
   * 
   * KEM-encoding of private key (i.e., SerializePrivateKey() ) as described in
   * https://www.rfc-editor.org/rfc/rfc9180.html#name-cryptographic-dependencies.
   * 
* * bytes private_key = 3; * @return The privateKey. */ com.google.protobuf.ByteString getPrivateKey(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy