Package io.dapr.v1

Interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getAlgorithm()
      Algorithm to use, as in the JWA standard.
      com.google.protobuf.ByteString getAlgorithmBytes()
      Algorithm to use, as in the JWA standard.
      com.google.protobuf.ByteString getAssociatedData()
      Associated Data when using AEAD ciphers (optional).
      String getComponentName()
      Name of the component
      com.google.protobuf.ByteString getComponentNameBytes()
      Name of the component
      String getKeyName()
      Name (or name/version) of the key.
      com.google.protobuf.ByteString getKeyNameBytes()
      Name (or name/version) of the key.
      com.google.protobuf.ByteString getNonce()
      Nonce / initialization vector.
      com.google.protobuf.ByteString getTag()
      Authentication tag.
      com.google.protobuf.ByteString getWrappedKey()
      Wrapped key.
      • 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 Detail

      • getComponentName

        String getComponentName()
         Name of the component
         
        string component_name = 1 [json_name = "componentName"];
        Returns:
        The componentName.
      • getComponentNameBytes

        com.google.protobuf.ByteString getComponentNameBytes()
         Name of the component
         
        string component_name = 1 [json_name = "componentName"];
        Returns:
        The bytes for componentName.
      • getWrappedKey

        com.google.protobuf.ByteString getWrappedKey()
         Wrapped key.
         
        bytes wrapped_key = 2 [json_name = "wrappedKey"];
        Returns:
        The wrappedKey.
      • getAlgorithm

        String getAlgorithm()
         Algorithm to use, as in the JWA standard.
         
        string algorithm = 3;
        Returns:
        The algorithm.
      • getAlgorithmBytes

        com.google.protobuf.ByteString getAlgorithmBytes()
         Algorithm to use, as in the JWA standard.
         
        string algorithm = 3;
        Returns:
        The bytes for algorithm.
      • getKeyName

        String getKeyName()
         Name (or name/version) of the key.
         
        string key_name = 4 [json_name = "keyName"];
        Returns:
        The keyName.
      • getKeyNameBytes

        com.google.protobuf.ByteString getKeyNameBytes()
         Name (or name/version) of the key.
         
        string key_name = 4 [json_name = "keyName"];
        Returns:
        The bytes for keyName.
      • getNonce

        com.google.protobuf.ByteString getNonce()
         Nonce / initialization vector.
         Ignored with asymmetric ciphers.
         
        bytes nonce = 5;
        Returns:
        The nonce.
      • getTag

        com.google.protobuf.ByteString getTag()
         Authentication tag.
         This is nil when not using an authenticated cipher.
         
        bytes tag = 6;
        Returns:
        The tag.
      • getAssociatedData

        com.google.protobuf.ByteString getAssociatedData()
         Associated Data when using AEAD ciphers (optional).
         
        bytes associated_data = 7 [json_name = "associatedData"];
        Returns:
        The associatedData.