You can encrypt a column but the implication is that you can never see the column again in cleartext directly. You will always need a form to encrypt and decrypt the value of that field for you.
You might look up the following on the web - CAPICOM - which lets you get to a "crypto" module that is inherent in Windows.
Basically, you create an encryption object with set {object} = CreateObject( "CAPICOM.EncryptedData.1" ) - after which you can encrypt or decrypt values as needed. A couple of other issues are involved, though.
First, you need a key.
Next, you need to choose an encryption algorithm. The U.S. Dept. of Defense considers the 3DES to be a good algorithm, for which the code is #3 (for triple-DES). Other standard algorithms are possible. You would probably NOT want to "roll your own."
Finally, you need a couple of routines to encrypt and decrypt. I recommend a web search for that, as there are several examples available.