decryptStringAsync
abstract fun decryptStringAsync(encrypted: Buffer<*>): Promise<DecryptStringAsyncReturnValue>(source)
Resolve with an object containing the following:
shouldReEncryptboolean - whether data that has just been returned from the decrypt operation should be re-encrypted, as the key has been rotated or a new key is available that provides a different security level. Iftrue, you should calldecryptStringAsyncagain to receive the new decrypted string.resultstring - the decrypted string.