public interface DecryptionSetup
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<DecryptionSetupV3> |
setupDecryption() |
retrofit2.Call<DecryptionSetupV3> |
setupDecryption(java.lang.String decrypt_tool_id,
java.lang.String decrypt_impl,
java.lang.String keystore_id,
java.lang.String keystore_type,
java.lang.String key_alias,
java.lang.String password,
java.lang.String cipher_spec,
java.lang.String _exclude_fields)
Install a decryption tool for parsing of encrypted data.
|
@FormUrlEncoded @POST(value="/3/DecryptionSetup") retrofit2.Call<DecryptionSetupV3> setupDecryption(@Field(value="decrypt_tool_id") java.lang.String decrypt_tool_id, @Field(value="decrypt_impl") java.lang.String decrypt_impl, @Field(value="keystore_id") java.lang.String keystore_id, @Field(value="keystore_type") java.lang.String keystore_type, @Field(value="key_alias") java.lang.String key_alias, @Field(value="password") java.lang.String password, @Field(value="cipher_spec") java.lang.String cipher_spec, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
decrypt_tool_id - Target key for the Decryption Tooldecrypt_impl - Implementation of the Decryption Toolkeystore_id - Location of Java Keystorekeystore_type - Keystore typekey_alias - Key aliaspassword - Key passwordcipher_spec - Specification of the cipher (and padding)_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@FormUrlEncoded @POST(value="/3/DecryptionSetup") retrofit2.Call<DecryptionSetupV3> setupDecryption()