On 26 Nov, 14:16, ship <ship....DeleteThis@gmail.com> wrote:
> Anyone know how to encrypt data - e.g. when sending a personal data by
> email
There's only one credible way, the rest is almost certainly snake-
oil:
Use something built around the PGP standards.
GnuGPG is an open-source implementation of this.
There are assorted mailer plugins (inc. Outlook) that can use this
standard too.
Learn a little background around crypto before building a business
process. In particular, a little understanding of the benefits of
public key crypto (PKI) over symmetric crypto will go a long way.
Bruce Schneier is a good source to read here (interesting blog too)
and his "Secrets and Lies" is an easy read that's well worth it.
Otherwise read Ross Anderson's "Security Engineering" (all competent
coders in relevant fields need to read this). Schneier's other books a
bit heavyweight to be practical though.
In particular, realise how insecure a symmetric key cipher is for
something like storing CC details in a web server's database! (Does
the key that lets you store them also also an attacker to read them?)
You'll soon realise that encryption is the easy bit nowadays, it's key
management that's more tricky. A good read of the relevant PGP or GPG
docs will help. Ideally do physical key exchange (swap keys when you
shake hands), but the transitive "web of trust" model is a big help
too (I trust him, you trust me, you trust him a bit because I do in
turn).
An evening's reading should allow you to understand what's necessary,
to a higher level than the UK goverment's current practice.
>> Stay informed about: How can we encrypt a small database file for sending by em..