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