Package mls_client
Interface MlsClient.CreateKeyPackageResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MlsClient.CreateKeyPackageResponse
,MlsClient.CreateKeyPackageResponse.Builder
- Enclosing class:
MlsClient
public static interface MlsClient.CreateKeyPackageResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptioncom.google.protobuf.ByteString
bytes encryption_priv = 4;
com.google.protobuf.ByteString
bytes init_priv = 3;
com.google.protobuf.ByteString
bytes key_package = 2;
com.google.protobuf.ByteString
bytes signature_priv = 5;
int
uint32 transaction_id = 1;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getTransactionId
int getTransactionId()uint32 transaction_id = 1;
- Returns:
- The transactionId.
-
getKeyPackage
com.google.protobuf.ByteString getKeyPackage()bytes key_package = 2;
- Returns:
- The keyPackage.
-
getInitPriv
com.google.protobuf.ByteString getInitPriv()bytes init_priv = 3;
- Returns:
- The initPriv.
-
getEncryptionPriv
com.google.protobuf.ByteString getEncryptionPriv()bytes encryption_priv = 4;
- Returns:
- The encryptionPriv.
-
getSignaturePriv
com.google.protobuf.ByteString getSignaturePriv()bytes signature_priv = 5;
- Returns:
- The signaturePriv.
-