I am trying to implement Always Encrypted feature in SQL Server 2016. I am using Entity Framework 6.0 c# to access my data. I have successfully accessed my encrypted data and displayed it as plain text after decryption. To achieve this I installed the certificate in correct user certificate store and included Column Encryption Setting = Enabled in my connection string. However, I would like to display ciphertext to users who do not have certificate installed on their machine. If i remove the cert, it gives me an error to say certificate is missing. If I remove the cert and Column Encryption Enabled attribute, it gives me error again. At a loss as to how to display ciphertext. Help?
removed the cert removed column encryption setting attribute