The 'decrypt_io' function was incorrectly parameterized with a "recipients"
parameter instead of "identities." Additionally, the function was typed as
returning None, but it should return bytes.
This commit corrects both the parameterization and the return type annotations
to align with the Rust code, which expects "identities" and returns bytes.
This may correct an issue that existed prior to my previous commit, but it
was overlooked until now.
The 'decrypt_io' function was incorrectly parameterized with a "recipients" parameter instead of "identities." Additionally, the function was typed as returning None, but it should return bytes.
This commit corrects both the parameterization and the return type annotations to align with the Rust code, which expects "identities" and returns bytes.
This may correct an issue that existed prior to my previous commit, but it was overlooked until now.