@gen.coroutine
def translator(data):
    """This function provides a second stage per user salted hasher for data that will be stored indefinitly."""
    salt = bcrypt.gensalt()
    return(bcrypt.hashpw(data, salt))