menu
pointycastle package
documentation
block/rc2_engine.dart
RC2Engine
rotateWordLeft method
rotateWordLeft method
dark_mode
light_mode
rotateWordLeft
method
int
rotateWordLeft
(
int
x
,
int
y
)
Implementation
int rotateWordLeft(int x, int y) { x &= 0xffff; return (x << y) | (x >> (16 - y)); }
pointycastle package
documentation
block/rc2_engine
RC2Engine
rotateWordLeft method
RC2Engine class