pub fn decode_engine_slice<E: Engine, T: AsRef<[u8]>>(
    input: T,
    output: &mut [u8],
    engine: &E
) -> Result<usize, DecodeSliceError>
👎Deprecated since 0.21.0: Use Engine::decode_slice
Expand description

Decode the input into the provided output slice.

See Engine::decode_slice.