The pycerebro.cclib module contains supplementary functions of hash and bit flags processing.
pycerebro.cclib.has_flag(flags, flag)
| Parameters: |  
  | 
| Returns: | “True” if the flag is set, otherwise - “False”. | 
| Return type: | bool | 
pycerebro.cclib.hash16_64(b16_str)
| Parameters: | b16_str (string) – hash in base16 format | 
| Result: | hash in base64 format | 
| Result type: | string | 
Converts a hash string from base16 to base64.
pycerebro.cclib.hash64_16(b64_str)
| Parameters: | b64_str (string) – hash in base64 format | 
| Result: | hash in base16 format | 
| Result type: | string | 
Converts a hash string from base64 to base16.