I there a way to connect my flask app to SQL Server using TDE encryption?
I'm using this configuration:
SQLALCHEMY_DATABASE_URI = 'mssql+pymssql://%s:%s@%s/%s' % (MYSQL_USER, MYSQL_PASSWORD, MYSQL_HOST, MYSQL_DB)
I saw there is a way to connect ssl:
ssl_args = {'ssl_ca': ca_path}
But my database is encrypt with TDE encryption. and I wish to create a secured connection.
My configuration:
- SQL Server
- Flask - sqlalchemy
- Windows
Thank you for your help!