0
votes
1answer
36 views

Determining whether a column is an encryption key or plain text

We have a column of type varchar(25) in a SQL Server table that mistakenly had plain text values inserted when they should have been encrypted with AES. We are going to remove the plain text values ...
1
vote
0answers
52 views

Encrypt in SQLServer 2005, decrypt in Java

I'm trying to find a way to encrypt a column in SQLServer 2005, with an algorithm easily decryptable from Java. From this page I see encryption by passphrase uses 3DES, but there's no other ...
1
vote
1answer
31 views

Can I encrypt data in from MS SQL Server TSQL without storing a key on the server?

I've tried using the "EncryptByPassPhrase", which would work for me if I could get the underlying key generated by the passphrase, but nowhere I've found on the internet explains how to do that. My ...
0
votes
1answer
25 views

Hide ASP Website and SQL Ptored Procedures from Users

I'm creating a ASP.Net web application which will be hosted on different servers, and I do not want to show my code to others who have access to those servers. So, I heard of publishing pre compiled ...
0
votes
0answers
58 views

Encrypting calculation formula and saving it to database

I need to have a calculation formula, which is changeable, saved and encrypted securely. The calculation formula is used in a executable application and maintained from a web service. So, there are ...
0
votes
1answer
28 views

Encryption on the fly

here is something interesting that I have been asked. It has to do with the encryption of data in a non encrypted database. The story has as follows. We have a database, not encrypted and also none ...
0
votes
1answer
30 views

symmetric Decrypting returns a NULL value

I have two databases . I copied all the data from one table and inserted into another database table . I have created symmetric key on second database but when i try to run the query as follow OPEN ...
0
votes
1answer
83 views

CFML decrypt string from database on the fly

I have the following script that tries to select some items from my database and decrypt the encrypted ones, the problem is the encryption key is made unique with a changing company_id I have in my ...
1
vote
0answers
93 views

Argument data type varchar is invalid for argument 3 of EncryptByKey function encryption

I'm currently doing an assessment and having quite some trouble with SQL encryption, I need to encrypt three of these columns on registration which are varchar but then they will need to be converted ...
0
votes
1answer
48 views

Implement same Encryption and Decryption Technique in SQL Server as implemented in ASP.Net

I created two methods Encrypt() and Decrypt() in my Web Application for Encrypting and Decrypting Data. Now, I want to use same technique in my SQL Server Database for Decrypting Data. Can anyone ...
0
votes
1answer
59 views

Encrypted information - Security advice [closed]

I want to use a key to encrypt/decrypt user's information from DB. The key is sent from the server to a 3rd server, trough two intermediate servers. Let's say like this: the key is sent from the ...
0
votes
0answers
182 views

SQL Server HASHBYTES SHA2_512 and C#

If I run the following in SQL Server: SELECT HASHBYTES('SHA2_512', 'THE CAT SAT ON THE MAT') and then run this in C# string test = WordFunctions.SHA512("THE CAT SAT ON THE MAT"); I get the same ...
0
votes
1answer
73 views

SQL Using SSL to encrypt a single connection

I want to force all external connections to be encrypted using SSL, essentially I want to encrypt only one of the network interfaces. This article comes about as close to my answer as I can get: ...
1
vote
1answer
295 views

Query encrypted column in MS SQL using LINQ

I need to encrypt some columns in my MS SQL database (name, ssn ...) and I have been looking at column encryption as described by a few sites such as: Encrypting Column Level Data in SQL Server and ...
0
votes
0answers
139 views

how could I Decrypt the SSIS package XML using T-sql

when I run this query select cast(cast(packagedata as varbinary(max)) as xml) as PackageData from msdb.dbo.sysssispackages i get a result of XML file but it's encrypted like <EncryptedData ...
0
votes
0answers
89 views

Absent symmetric key and master key after restoring to new server

I had a SQL database on a previous server, of which I had a master key and certificate creating using the following syntax: CREATE MASTER KEY ENCRYPTION BY PASSWORD = ...
1
vote
3answers
393 views

SQL Server 2012 Encryption

Looking for some best practices and help with Encryption. I've got a customer table which contains names, address and contact info. It now has over 15000 records and I want to either encrypt the ...
2
votes
1answer
88 views

“Simple” Decryption Not Working 100% of the times

I have two functions. An encryption function and a decryption function (see below). The decryption function doesn't work 100% of the time with specific words and I cannot figure out the reason why. ...
0
votes
2answers
101 views

Protect database with password like Microsoft Access

I want to ask for something in Database protection. I have a Windows Application that will be deployed to different clients, while deploying i am creating a database on client machine. The Question ...
3
votes
1answer
629 views

Understanding SQL Server encryption (by password)?

A company need to store sensitive data. Please let's not talk about certificate right now. A DBA does the following : CREATE SYMMETRIC KEY SecureSymmetricKey1 WITH ALGORITHM = DESX ...
5
votes
1answer
688 views

Stored procedure ENCRYPTION option depending on build mode

I'm working on stored procedures encryption in enterprise project. We have a bunch of SP's that should be protected on production. There is no problem to set WITH ENCRYPTION parameter in each SP that ...
1
vote
0answers
158 views

Safely generated encryption key from user's password?

I'm building a Django website with MySQL. I've already decided to use Django's built in pbkdf2-sha256 with randomly generated salt hash to store a user's password. However this website will also need ...
0
votes
1answer
245 views

SQL Server Log Shipping and Master Key

We have a SQL Server 2008r2 database that uses encryption. We are log shipping the db to a secondary backup. Decryption is failing on the secondary server. The secondary backup does not appear to have ...
1
vote
1answer
153 views

Which is better approach for encrypt and decrypt data??

i want to encrypt the data. still i am following to do this on ASP.NET Pages. i came to know that we can apply encryption/decryption on data at Backend means on SQL SERVER. I want to know which is the ...
1
vote
1answer
207 views

Client-side data encryption / SQL Server Express LocalDB

What are the strategies in .NET to secure semi-sensitive client-side data (so that only the application itself can use/see it)? Could the information be contained in an accompanying mdf file (used by ...
0
votes
1answer
78 views

EncryptByKey function does not work after restore

I've restored my database to a new server and now the EncryptByKey function does not work properly. Any ideas?
1
vote
1answer
116 views

Optimising range/wildcard search on encrypted columns.

I have couple of requirements which don't really play well with each other: Encrypt the first name, last name, DOB along with few other columns in a table (database is Sql Server). Perform ...
0
votes
1answer
233 views

Does AES in SQL Server 2008 R2 require an Initialization Vector?

I am testing encryption in Sql Server using AES_128. When I encrypt the same text (4111111111111111) the encrypted binary data is different each time. Because the encrypted data is different each ...
6
votes
1answer
440 views

Entity Framework and Encrypted Database

I have a column (salary) encrypted in database (MS SQL Server). I am using the entity framework to display/edit the records from the front end. Any idea how to decrypt the column in the front end to ...
1
vote
1answer
186 views

Whats the reason for “Deprecated encryption algorithm”?

Was having a look at sys.dm_os_performance_counters to find out what deprecated features is used on my SQL Server 2008 R2: SELECT [object_name], instance_name, cntr_value FROM ...
1
vote
1answer
192 views

Display encrypted data from SQL DB

So I followed this guide here http://www.kodyaz.com/articles/sql-server-2005-database-encryption-step-by-step.aspx on how to setup encryption for my DB. All went fine on that side. I'm trying to get ...
0
votes
1answer
760 views

Encrypted query in sql server

I want to execute a query in our client's server using remove access. If I execute a query something like this Update abc set col1=12 where id = 2 they will understand what we are doing. So I want ...
1
vote
2answers
2k views

How to encrypt columns in SQL Server 2008 R2

I would be using shared hosting for my SQL Server. I wanted to encrypt the primary key column(auto generated ID) and a varchar column. I searched around and came across TDE. But, being a shared ...
1
vote
2answers
253 views

Encrypt query string in SQL possible?

please give me some advice. I have to send email using SQL database mail. In my email, I have to create links that a user can click to go to a product page on my site. However, I need to encrypt the ...
2
votes
2answers
114 views

How feasible is it to extend Microsoft's JDBC driver?

I'm currently working on a project where we have a Java web app bought from a 3rd party vendor that's connecting to SQL Server using Microsoft's JDBC driver. However, I've been given the requirement ...
2
votes
2answers
505 views

SQL Server Column Encryption

I have a couple of columns in my application that need to encrypted for security reasons. How is this possible with SQL Server 2008? Also, would I need to always manually decrypt them or will it ...
0
votes
4answers
145 views

Best practise when storing contact information in SQL, should I encrypt?

I'm just wondering if I should encrypt user contact information when I store it in the database? E.g. emails, phone numbers etc...
0
votes
1answer
156 views

How many encryption keys on a SQL Server database?

How many encryption keys can there be in a SQL Server database? Can there be one encryption key for ColumnX and another encryption key for ColumnY and another for ColumnZ? How can this be ...
0
votes
1answer
443 views

RC2 Crypt SQL Server and C#

He was investigating how to implement an encryption algorithm in my application. He had seen the RC2. On the one hand, I managed to encrypt and decrypt from c #. On the other hand, I also managed to ...
2
votes
2answers
1k views

How can we view the encrypted stored procedure's body in SSMS?

I create a new stored procedure WITH ENCRYPTION statement, now I want to view it's body. What is the solution?
0
votes
1answer
203 views

Is there any feature like TDE for column level encryption on SQL Server 2008 that works transparently?

I want to know that, is there any feature in SQL Server 2008 for column level data encryption like TDE?
0
votes
1answer
768 views

Does SQL Server Express 2012 remote connection sends data in plaintext or encrypted?

I have a Winforms (C#, .NET 4.0) application and I would like to connect to a remote SQL Server 2012 Express. Also I would like to send and receive data from the SQL Server to my application in an ...
0
votes
4answers
2k views

How to insert md5 hash value in MS sql server?

I have table user which have password field. Here I want to input md5 hash value directly from database since my haven't prepare for registration apps. Is there any function or attributes for column. ...
0
votes
1answer
155 views

Asymmetric decryption through LINQ

I've got a column in a table that has been asymmetrically encrypted through a SQL trigger. The key (by password) resides in the SQL DB. Now, I need to decrypt it through a console app running every xx ...
0
votes
3answers
315 views

Querying encrypted values in database

I have an ASP.NET Web Application using SQL Server 2008. When a post code is submitted through the web application, it is encrypted, and then the encrypted value is sent to the database and inserted ...
0
votes
2answers
859 views

Encrypt / decrypt data in SQL Server Management Studio

I need to store sensitive data in SQL server and need this encrypting. This ideally needs encryping and descrypting within SQL server and not in the code of the application(s). The reason being, the ...
3
votes
1answer
690 views

Creating a master key in SQL Server

I'm trying to implement an encrypted column as in this following MSDN example. I understand most of the code except for the very first line: --If there is no master key, create one now. IF NOT ...
1
vote
1answer
124 views

SQL Server data encryption [duplicate]

Possible Duplicate: Best Practice for Database Encryption in SQL Server 2005 All the work against our database done via stored procedures. The problem is that some columns contain VERY ...
0
votes
2answers
2k views

How to Encrypt SQL Server 2008 Database

I have a database which currently is using by my application. I dodn't want to change anything in my application CORE. But I want to encrypt DATA and INFORMATION in which stored or is storing in ...
0
votes
1answer
222 views

Incorrect syntax near 'TO'. Expecting DOUBLECOLON

I'm trying to grant access to to use an asymmetric key a database user. GRANT VIEW DEFINITION ON ASYMMETRIC KEY ak TO dbuser SSMS highlights TO with the following error Incorrect syntax near 'TO'. ...

1 2 3