Exemple #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
Exemple #2
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
Exemple #3
0
def apply_crypt(string_const):
    return u.crypt_string(string_const)
Exemple #4
0
def apply_crypt(string_const):
    return u.crypt_string(string_const)