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

package com.google.crypto.tink.proto;

only allowing IV size in bytes = 12 and tag size in bytes = 16
Thus, accept no params.
Protobuf type google.crypto.tink.AesGcmKeyFormat
/** * <pre> * only allowing IV size in bytes = 12 and tag size in bytes = 16 * Thus, accept no params. * </pre> * * Protobuf type {@code google.crypto.tink.AesGcmKeyFormat} */
public final class AesGcmKeyFormat extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.crypto.tink.AesGcmKeyFormat) AesGcmKeyFormatOrBuilder { private static final long serialVersionUID = 0L; // Use AesGcmKeyFormat.newBuilder() to construct. private AesGcmKeyFormat(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { super(builder); } private AesGcmKeyFormat() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new AesGcmKeyFormat(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private AesGcmKeyFormat( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 16: { keySize_ = input.readUInt32(); break; } case 24: { version_ = input.readUInt32(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.crypto.tink.proto.AesGcm.internal_static_google_crypto_tink_AesGcmKeyFormat_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.crypto.tink.proto.AesGcm.internal_static_google_crypto_tink_AesGcmKeyFormat_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.crypto.tink.proto.AesGcmKeyFormat.class, com.google.crypto.tink.proto.AesGcmKeyFormat.Builder.class); } public static final int KEY_SIZE_FIELD_NUMBER = 2; private int keySize_;
uint32 key_size = 2;
Returns:The keySize.
/** * <code>uint32 key_size = 2;</code> * @return The keySize. */
public int getKeySize() { return keySize_; } public static final int VERSION_FIELD_NUMBER = 3; private int version_;
uint32 version = 3;
Returns:The version.
/** * <code>uint32 version = 3;</code> * @return The version. */
public int getVersion() { return version_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (keySize_ != 0) { output.writeUInt32(2, keySize_); } if (version_ != 0) { output.writeUInt32(3, version_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (keySize_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(2, keySize_); } if (version_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(3, version_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.crypto.tink.proto.AesGcmKeyFormat)) { return super.equals(obj); } com.google.crypto.tink.proto.AesGcmKeyFormat other = (com.google.crypto.tink.proto.AesGcmKeyFormat) obj; if (getKeySize() != other.getKeySize()) return false; if (getVersion() != other.getVersion()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + KEY_SIZE_FIELD_NUMBER; hash = (53 * hash) + getKeySize(); hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.crypto.tink.proto.AesGcmKeyFormat parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.crypto.tink.proto.AesGcmKeyFormat prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; }
only allowing IV size in bytes = 12 and tag size in bytes = 16
Thus, accept no params.
Protobuf type google.crypto.tink.AesGcmKeyFormat
/** * <pre> * only allowing IV size in bytes = 12 and tag size in bytes = 16 * Thus, accept no params. * </pre> * * Protobuf type {@code google.crypto.tink.AesGcmKeyFormat} */
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements // @@protoc_insertion_point(builder_implements:google.crypto.tink.AesGcmKeyFormat) com.google.crypto.tink.proto.AesGcmKeyFormatOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.crypto.tink.proto.AesGcm.internal_static_google_crypto_tink_AesGcmKeyFormat_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.crypto.tink.proto.AesGcm.internal_static_google_crypto_tink_AesGcmKeyFormat_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.crypto.tink.proto.AesGcmKeyFormat.class, com.google.crypto.tink.proto.AesGcmKeyFormat.Builder.class); } // Construct using com.google.crypto.tink.proto.AesGcmKeyFormat.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); keySize_ = 0; version_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.crypto.tink.proto.AesGcm.internal_static_google_crypto_tink_AesGcmKeyFormat_descriptor; } @java.lang.Override public com.google.crypto.tink.proto.AesGcmKeyFormat getDefaultInstanceForType() { return com.google.crypto.tink.proto.AesGcmKeyFormat.getDefaultInstance(); } @java.lang.Override public com.google.crypto.tink.proto.AesGcmKeyFormat build() { com.google.crypto.tink.proto.AesGcmKeyFormat result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.crypto.tink.proto.AesGcmKeyFormat buildPartial() { com.google.crypto.tink.proto.AesGcmKeyFormat result = new com.google.crypto.tink.proto.AesGcmKeyFormat(this); result.keySize_ = keySize_; result.version_ = version_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.crypto.tink.proto.AesGcmKeyFormat) { return mergeFrom((com.google.crypto.tink.proto.AesGcmKeyFormat)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.crypto.tink.proto.AesGcmKeyFormat other) { if (other == com.google.crypto.tink.proto.AesGcmKeyFormat.getDefaultInstance()) return this; if (other.getKeySize() != 0) { setKeySize(other.getKeySize()); } if (other.getVersion() != 0) { setVersion(other.getVersion()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.crypto.tink.proto.AesGcmKeyFormat parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.crypto.tink.proto.AesGcmKeyFormat) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int keySize_ ;
uint32 key_size = 2;
Returns:The keySize.
/** * <code>uint32 key_size = 2;</code> * @return The keySize. */
public int getKeySize() { return keySize_; }
uint32 key_size = 2;
Params:
  • value – The keySize to set.
Returns:This builder for chaining.
/** * <code>uint32 key_size = 2;</code> * @param value The keySize to set. * @return This builder for chaining. */
public Builder setKeySize(int value) { keySize_ = value; onChanged(); return this; }
uint32 key_size = 2;
Returns:This builder for chaining.
/** * <code>uint32 key_size = 2;</code> * @return This builder for chaining. */
public Builder clearKeySize() { keySize_ = 0; onChanged(); return this; } private int version_ ;
uint32 version = 3;
Returns:The version.
/** * <code>uint32 version = 3;</code> * @return The version. */
public int getVersion() { return version_; }
uint32 version = 3;
Params:
  • value – The version to set.
Returns:This builder for chaining.
/** * <code>uint32 version = 3;</code> * @param value The version to set. * @return This builder for chaining. */
public Builder setVersion(int value) { version_ = value; onChanged(); return this; }
uint32 version = 3;
Returns:This builder for chaining.
/** * <code>uint32 version = 3;</code> * @return This builder for chaining. */
public Builder clearVersion() { version_ = 0; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.crypto.tink.AesGcmKeyFormat) } // @@protoc_insertion_point(class_scope:google.crypto.tink.AesGcmKeyFormat) private static final com.google.crypto.tink.proto.AesGcmKeyFormat DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.crypto.tink.proto.AesGcmKeyFormat(); } public static com.google.crypto.tink.proto.AesGcmKeyFormat getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser<AesGcmKeyFormat> PARSER = new com.google.protobuf.AbstractParser<AesGcmKeyFormat>() { @java.lang.Override public AesGcmKeyFormat parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new AesGcmKeyFormat(input, extensionRegistry); } }; public static com.google.protobuf.Parser<AesGcmKeyFormat> parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser<AesGcmKeyFormat> getParserForType() { return PARSER; } @java.lang.Override public com.google.crypto.tink.proto.AesGcmKeyFormat getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }