A Brief Background on Encoding and Encryption

Differences between encoding and encryption mean that decoding objects that were created WITH ENCRYPTION can be relatively straightforward.

Omri Bahat

July 18, 2007

1 Min Read
A Brief Background on Encoding and Encryption

A vast number of encoding and encryption methods are available for obfuscating and protecting data, respectively. Common examples include the turbo or convolution codes that are often used to encode digital communication signals, or RSA, Blowfish, and other hashing techniques. The complexity of various decoding and decryption algorithms is often measured by the amount of memory required to crack the stream of raw data (sometimes referred to as buffer size).

With SQL Server, trial-and-error experiments have shown that WITH ENCRYPTION encodes (but doesn't actually encrypt) the text of database objects. Moreover, the buffer size equals the length of one unicode character (i.e., 2 bytes). In other words, decoding objects that were created WITH ENCRYPTION can be relatively straightforward.

Main article: Decrypt SQL Server Objects

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like