Our goal is encrypt some sensitive data in SQL Server Express LocalDB which does not support TDE <https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/transparent-data-encryption> . It easy can be implemented in LocalDB with cryptographic functions (T-SQL <https://docs.microsoft.com/en-us/sql/t-sql/functions/cryptographic-functions-transact-sql>), but we do not know how do it better. Java implementation of Hibernate contains very usefull (for our situatuion) functions @ColumnTransfer <https://www.thoughts-on-java.org/map-encrypted-database-columns-hibernates-columntransformer-annotation/>, does the NHibernate contain analogs?
I found some examples like "SQL Server Database Encryption with NHibernate" <https://brosteins.com/2014/07/19/sql-server-database-encryption-with-nhibernate-series-part-1-of-5/>, but those examples are too complex (I think) and contain errors. -- You received this message because you are subscribed to the Google Groups "nhusers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/nhusers. For more options, visit https://groups.google.com/d/optout.
