MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / _PERM_OP

Function _PERM_OP

thirdparty/fcrypt/fcrypt.py:447–452  ·  view source on GitHub ↗

Cleverer bit manipulation.

(a,b,n,m)

Source from the content-addressed store, hash-verified

445 return a ^ t ^ ((t >> 18) & 0x3fff)
446
447def _PERM_OP(a,b,n,m):
448 """Cleverer bit manipulation."""
449 t = ((a >> n) ^ b) & m
450 b = b ^ t
451 a = a ^ (t << n)
452 return a,b
453
454
455def _set_key(password):

Callers 2

_set_keyFunction · 0.85
_bodyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…