音声認識コマンドが暗号化されて送信される場合に、暗号解除のための複合化キーを設定する。複合化キーはサバ―側で暗号化に利用したキーと同一の値である必要がある。
- Type: string (Max size: 16byte)
- Access type: read / write
- Default value: blank
Remarks
対応バージョン: SDK 2.0.0, Haruzira 2.0.0以降
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get string key = cltComm.ReceivedDataDecryptionKey; //Set cltComm.ReceivedDataDecryptionKey= "test23key" |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get key = cltComm.ReceivedDataDecryptionKey #Set cltComm.ReceivedDataDecryptionKey= "test23key" |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get key = clt_comm.ReceivedDataDecryptionKey #Set clt_comm.ReceivedDataDecryptionKey= "test23key" |