MSSQL_CERTIFICATE_STORE 该平台不支持操作
MSSQL_CERTIFICATE_STORE Operation is not supported on this platform
我正在使用 .NET Core 3.1 应用程序 (C#),当我向 ubuntu 服务器中的 docker 容器发送请求时遇到这样的错误消息:
"Failed to decrypt a column encryption key using key store provider: 'MSSQL_CERTIFICATE_STORE'. The last 10 bytes of the encrypted column encryption key are: 'xx-xx-xx-xx-xx-xx-xx-xx-xx-xx'.\nOperation is not supported on this platform."
根据这个 link (https://docs.microsoft.com/en-us/sql/connect/odbc/using-always-encrypted-with-the-odbc-driver?view=sql-server-ver15),似乎 Linux 不包含 MSSQL_CERTIFICATE_STORE 并强制我使用 Azure Key Vault Store。
我的问题是'Is it possible to integrate MSSQL_CERTIFICATE_STORE and Linux environment without using the Azure Key Vault Store?'
我正在使用 .NET Core 3.1 应用程序 (C#),当我向 ubuntu 服务器中的 docker 容器发送请求时遇到这样的错误消息:
"Failed to decrypt a column encryption key using key store provider: 'MSSQL_CERTIFICATE_STORE'. The last 10 bytes of the encrypted column encryption key are: 'xx-xx-xx-xx-xx-xx-xx-xx-xx-xx'.\nOperation is not supported on this platform."
根据这个 link (https://docs.microsoft.com/en-us/sql/connect/odbc/using-always-encrypted-with-the-odbc-driver?view=sql-server-ver15),似乎 Linux 不包含 MSSQL_CERTIFICATE_STORE 并强制我使用 Azure Key Vault Store。
我的问题是'Is it possible to integrate MSSQL_CERTIFICATE_STORE and Linux environment without using the Azure Key Vault Store?'