rust-bitcoin/rust-secp256k1

Deprecate `Message::from_digest_slice`?

Kixunil opened this issue · 1 comments

There is from_digest method which is more straightforward for probably all use cases - any serious hash engine will output an array, not a slice/vec/whatever. And in the rare scenarios where people use hash engines with crappy API they can just call .try_into().unwrap() themselves - no need to pollute our API.

Yeah, not a bad idea. Especially since we expect people to mostly stop using Message conversions anyway.