
com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tink-android Show documentation
Show all versions of tink-android Show documentation
Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: proto/aes_ctr_hmac_aead.proto
// Protobuf Java Version: 4.28.2
package com.google.crypto.tink.proto;
/**
* Protobuf type {@code google.crypto.tink.AesCtrHmacAeadKeyFormat}
*/
public final class AesCtrHmacAeadKeyFormat extends
com.google.protobuf.GeneratedMessageLite<
AesCtrHmacAeadKeyFormat, AesCtrHmacAeadKeyFormat.Builder> implements
// @@protoc_insertion_point(message_implements:google.crypto.tink.AesCtrHmacAeadKeyFormat)
AesCtrHmacAeadKeyFormatOrBuilder {
private AesCtrHmacAeadKeyFormat() {
}
private int bitField0_;
public static final int AES_CTR_KEY_FORMAT_FIELD_NUMBER = 1;
private com.google.crypto.tink.proto.AesCtrKeyFormat aesCtrKeyFormat_;
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
@java.lang.Override
public boolean hasAesCtrKeyFormat() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
@java.lang.Override
public com.google.crypto.tink.proto.AesCtrKeyFormat getAesCtrKeyFormat() {
return aesCtrKeyFormat_ == null ? com.google.crypto.tink.proto.AesCtrKeyFormat.getDefaultInstance() : aesCtrKeyFormat_;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
private void setAesCtrKeyFormat(com.google.crypto.tink.proto.AesCtrKeyFormat value) {
value.getClass();
aesCtrKeyFormat_ = value;
bitField0_ |= 0x00000001;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeAesCtrKeyFormat(com.google.crypto.tink.proto.AesCtrKeyFormat value) {
value.getClass();
if (aesCtrKeyFormat_ != null &&
aesCtrKeyFormat_ != com.google.crypto.tink.proto.AesCtrKeyFormat.getDefaultInstance()) {
aesCtrKeyFormat_ =
com.google.crypto.tink.proto.AesCtrKeyFormat.newBuilder(aesCtrKeyFormat_).mergeFrom(value).buildPartial();
} else {
aesCtrKeyFormat_ = value;
}
bitField0_ |= 0x00000001;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
private void clearAesCtrKeyFormat() { aesCtrKeyFormat_ = null;
bitField0_ = (bitField0_ & ~0x00000001);
}
public static final int HMAC_KEY_FORMAT_FIELD_NUMBER = 2;
private com.google.crypto.tink.proto.HmacKeyFormat hmacKeyFormat_;
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
@java.lang.Override
public boolean hasHmacKeyFormat() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
@java.lang.Override
public com.google.crypto.tink.proto.HmacKeyFormat getHmacKeyFormat() {
return hmacKeyFormat_ == null ? com.google.crypto.tink.proto.HmacKeyFormat.getDefaultInstance() : hmacKeyFormat_;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
private void setHmacKeyFormat(com.google.crypto.tink.proto.HmacKeyFormat value) {
value.getClass();
hmacKeyFormat_ = value;
bitField0_ |= 0x00000002;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeHmacKeyFormat(com.google.crypto.tink.proto.HmacKeyFormat value) {
value.getClass();
if (hmacKeyFormat_ != null &&
hmacKeyFormat_ != com.google.crypto.tink.proto.HmacKeyFormat.getDefaultInstance()) {
hmacKeyFormat_ =
com.google.crypto.tink.proto.HmacKeyFormat.newBuilder(hmacKeyFormat_).mergeFrom(value).buildPartial();
} else {
hmacKeyFormat_ = value;
}
bitField0_ |= 0x00000002;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
private void clearHmacKeyFormat() { hmacKeyFormat_ = null;
bitField0_ = (bitField0_ & ~0x00000002);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static Builder newBuilder() {
return (Builder) DEFAULT_INSTANCE.createBuilder();
}
public static Builder newBuilder(com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
* Protobuf type {@code google.crypto.tink.AesCtrHmacAeadKeyFormat}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat, Builder> implements
// @@protoc_insertion_point(builder_implements:google.crypto.tink.AesCtrHmacAeadKeyFormat)
com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormatOrBuilder {
// Construct using com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
@java.lang.Override
public boolean hasAesCtrKeyFormat() {
return instance.hasAesCtrKeyFormat();
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
@java.lang.Override
public com.google.crypto.tink.proto.AesCtrKeyFormat getAesCtrKeyFormat() {
return instance.getAesCtrKeyFormat();
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
public Builder setAesCtrKeyFormat(com.google.crypto.tink.proto.AesCtrKeyFormat value) {
copyOnWrite();
instance.setAesCtrKeyFormat(value);
return this;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
public Builder setAesCtrKeyFormat(
com.google.crypto.tink.proto.AesCtrKeyFormat.Builder builderForValue) {
copyOnWrite();
instance.setAesCtrKeyFormat(builderForValue.build());
return this;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
public Builder mergeAesCtrKeyFormat(com.google.crypto.tink.proto.AesCtrKeyFormat value) {
copyOnWrite();
instance.mergeAesCtrKeyFormat(value);
return this;
}
/**
* .google.crypto.tink.AesCtrKeyFormat aes_ctr_key_format = 1;
*/
public Builder clearAesCtrKeyFormat() { copyOnWrite();
instance.clearAesCtrKeyFormat();
return this;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
@java.lang.Override
public boolean hasHmacKeyFormat() {
return instance.hasHmacKeyFormat();
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
@java.lang.Override
public com.google.crypto.tink.proto.HmacKeyFormat getHmacKeyFormat() {
return instance.getHmacKeyFormat();
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
public Builder setHmacKeyFormat(com.google.crypto.tink.proto.HmacKeyFormat value) {
copyOnWrite();
instance.setHmacKeyFormat(value);
return this;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
public Builder setHmacKeyFormat(
com.google.crypto.tink.proto.HmacKeyFormat.Builder builderForValue) {
copyOnWrite();
instance.setHmacKeyFormat(builderForValue.build());
return this;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
public Builder mergeHmacKeyFormat(com.google.crypto.tink.proto.HmacKeyFormat value) {
copyOnWrite();
instance.mergeHmacKeyFormat(value);
return this;
}
/**
* .google.crypto.tink.HmacKeyFormat hmac_key_format = 2;
*/
public Builder clearHmacKeyFormat() { copyOnWrite();
instance.clearHmacKeyFormat();
return this;
}
// @@protoc_insertion_point(builder_scope:google.crypto.tink.AesCtrHmacAeadKeyFormat)
}
@java.lang.Override
@java.lang.SuppressWarnings({"unchecked", "fallthrough"})
protected final java.lang.Object dynamicMethod(
com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
java.lang.Object arg0, java.lang.Object arg1) {
switch (method) {
case NEW_MUTABLE_INSTANCE: {
return new com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"bitField0_",
"aesCtrKeyFormat_",
"hmacKeyFormat_",
};
java.lang.String info =
"\u0000\u0002\u0000\u0001\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u1009\u0000\u0002" +
"\u1009\u0001";
return newMessageInfo(DEFAULT_INSTANCE, info, objects);
}
// fall through
case GET_DEFAULT_INSTANCE: {
return DEFAULT_INSTANCE;
}
case GET_PARSER: {
com.google.protobuf.Parser parser = PARSER;
if (parser == null) {
synchronized (com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat.class) {
parser = PARSER;
if (parser == null) {
parser =
new DefaultInstanceBasedParser(
DEFAULT_INSTANCE);
PARSER = parser;
}
}
}
return parser;
}
case GET_MEMOIZED_IS_INITIALIZED: {
return (byte) 1;
}
case SET_MEMOIZED_IS_INITIALIZED: {
return null;
}
}
throw new UnsupportedOperationException();
}
// @@protoc_insertion_point(class_scope:google.crypto.tink.AesCtrHmacAeadKeyFormat)
private static final com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat DEFAULT_INSTANCE;
static {
AesCtrHmacAeadKeyFormat defaultInstance = new AesCtrHmacAeadKeyFormat();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
AesCtrHmacAeadKeyFormat.class, defaultInstance);
}
public static com.google.crypto.tink.proto.AesCtrHmacAeadKeyFormat getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy