macro_rules! with_crypto_scheme {
    (
		$scheme:expr,
		$method:ident ( $($params:expr),* $(,)?) $(,)?
	) => { ... };
    (
		$scheme:expr,
		$method:ident<$($generics:ty),*>( $( $params:expr ),* $(,)?) $(,)?
	) => { ... };
}
Expand description

Allows for calling $method with appropriate crypto impl.