Decrypt ciphertext.
POST/crypto/decrypt
Decrypt ciphertext.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
cryptoTypestringrequired
Possible values: [AES
, DES
, TripleDES
, Rabbit
, RC4
, RC4Drop
]
ciphertextstringrequired
The ciphertext.
secretKeystringrequired
The encryption key.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
decryptedTextstringrequired
The plaintext.
{
"decryptedText": "string"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}