コード例 #1
0
def apply_crypt(string_const):
    """Apply the crypto routine to the string costant"""
    if string_const is None:
        return ''
    if not u.is_number(string_const):
        return 'a7ign' + u.crypt_string(string_const)
    else:
        return string_const
コード例 #2
0
ファイル: obfuscator_restring.py プロジェクト: dstmath/aamo
def apply_crypt(string_const):
    """Apply the crypto routine to the string costant"""
    if string_const is None:
        return ''
    if not u.is_number(string_const):
        return 'a7ign' + u.crypt_string(string_const)
    else:
        return string_const
コード例 #3
0
ファイル: obfuscator_string.py プロジェクト: yyg192/aamo
def apply_crypt(string_const):
    return u.crypt_string(string_const)
コード例 #4
0
ファイル: obfuscator_string.py プロジェクト: dstmath/aamo
def apply_crypt(string_const):
    return u.crypt_string(string_const)