show/hide this revision's text 2 added 246 characters in body

"Security is a process, not a product." - Schneier

Cryptographic algorithms like hashing, encryption, and signing are just a part of the process:

  • How are you storing your keys? Can they accidentally be leaked onto disk via the page file?
  • How do you generate your random numbers? Bad random numbers can really weaken everything. Just ask Debian or Netscape for horror stories.
  • Can an IT adminstrator(s) update which algorithms are allowed using group policy?
  • Does the solution support external hardened devices?
  • Can you do the encryption in kernel mode?
  • How do updates get distributed in the case of an attack or weakness?

CAPI and especially CNG on Vista have thought through these issues and in general are decent. You might want to watch this video by two guys on the CAPI team to get a feel for who designed it.

And besides, all of this is moot if folks can get physical access to your machine and put in a key logger.

Alas, it's a process...

show/hide this revision's text 1

"Security is a process, not a product." - Schneier

Cryptographic algorithms like hashing, encryption, and signing are just a part of the process:

  • How are you storing your keys? Can they accidentally be leaked onto disk via the page file?
  • How do you generate your random numbers?
  • Can an IT adminstrator(s) update which algorithms are allowed using group policy?
  • Does the solution support external hardened devices?
  • Can you do the encryption in kernel mode?
  • How do updates get distributed in the case of an attack or weakness?

CAPI and especially CNG on Vista have thought through these issues and in general are decent. You might want to watch this video by two guys on the CAPI team to get a feel for who designed it.

And besides, all of this is moot if folks can get physical access to your machine and put in a key logger.

Alas, it's a process...