def create_app(self): return ExampleApplicationWithCassandra()
def create_app(self): cipher = AESCipher(aes_key='0123456789abcdef') return ExampleApplicationWithCassandra(cipher=cipher, always_encrypt_stored_events=True)
def create_app(self): cipher = AESStoredEventCipher(aes_key='0123456789abcdef') return ExampleApplicationWithCassandra(cipher=cipher)