I am trying to encrypt a column in SQL server 08.
I am using AES, certificate and symmetric key.
Can I change the data type and length of the encrypted column from varbinary(128) to a smaller length and also change it to varchar?
Is there a way to prefix the encrypted column data?
Is there a way to encrypt so that same value gets same encrypted ID?
For example, if the table has the same ID in different rows- can I get the same encryptedID for that ID wherever it is used?
I am using AES, certificate and symmetric key.
Can I change the data type and length of the encrypted column from varbinary(128) to a smaller length and also change it to varchar?
Is there a way to prefix the encrypted column data?
Is there a way to encrypt so that same value gets same encrypted ID?
For example, if the table has the same ID in different rows- can I get the same encryptedID for that ID wherever it is used?