Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SNAS/openbmp
/ rotate_left
Method
rotate_left
Server/src/md5.cpp:482–484 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
480
// ROTATE_LEFT rotates x left n bits.
481
482
inline unsigned int MD5::rotate_left (uint4 x, uint4 n){
483
return (x << n) | (x >> (32-n)) ;
484
}
485
486
487
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected