We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c1d9da commit 4e5ca4cCopy full SHA for 4e5ca4c
blake2/src/macros.rs
@@ -358,15 +358,15 @@ macro_rules! blake2_mac_impl {
358
359
impl<OutSize> OutputSizeUser for $name<OutSize>
360
where
361
- OutSize: ArrayLength<u8> + IsLessOrEqual<$max_size>,
+ OutSize: ArrayLength<u8> + IsLessOrEqual<$max_size> + 'static,
362
LeEq<OutSize, $max_size>: NonZero,
363
{
364
type OutputSize = OutSize;
365
}
366
367
impl<OutSize> FixedOutput for $name<OutSize>
368
369
370
371
372
#[inline]
0 commit comments