コード例 #1
0
 def create_app(self):
     return ExampleApplicationWithCassandra()
コード例 #2
0
 def create_app(self):
     cipher = AESCipher(aes_key='0123456789abcdef')
     return ExampleApplicationWithCassandra(cipher=cipher, always_encrypt_stored_events=True)
コード例 #3
0
 def create_app(self):
     cipher = AESStoredEventCipher(aes_key='0123456789abcdef')
     return ExampleApplicationWithCassandra(cipher=cipher)