Is there a way to break up the plain text and encrypt it in chunks to get around the 8000 byte encryption limit? Ideally I would break it up encrypt it and store it all the pieces in one record, using some sort of delimited, and pull the encrypted chunks back out and decrypt them. Running in an asp.net application. I understand that the varbinary(max) field will only allow up to 2^31 -1 bytes. But the 8000 byte limit is a wee bit too small for my purposes.