We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebe4997 commit a0b15b7Copy full SHA for a0b15b7
1 file changed
cryptoTools/Common/block.h
@@ -350,7 +350,8 @@ namespace osuCrypto
350
#endif
351
}
352
353
- OC_CUDA_CALLABLE OC_FORCEINLINE block operator>>(const std::uint8_t& rhs)const
+
354
+ OC_CUDA_CALLABLE OC_FORCEINLINE block srli_epi64(const std::uint8_t& rhs)const
355
{
356
#ifdef OC_ENABLE_SSE2
357
return mm_srli_epi64(rhs);
@@ -359,6 +360,14 @@ namespace osuCrypto
359
360
361
362
363
364
+ [[deprecated("use srli_epi64 instead")]]
365
+ OC_CUDA_CALLABLE OC_FORCEINLINE block operator>>(const std::uint8_t& rhs)const
366
+ {
367
+ return srli_epi64(rhs);
368
+ }
369
370
371
OC_CUDA_CALLABLE OC_FORCEINLINE osuCrypto::block& operator>>=(const std::uint8_t& rhs)
372
373
*this = *this >> rhs;
0 commit comments