Slashdot Mirror


Hong Kong Smart Identity Cards In 2003

griffinn writes: "The Hong Kong Government has announced its plan to replace the identity cards of all Hong Kong citizens with smart cards, starting 2003. I don't know anything about smart card technology, but I suppose some sort of asymmetric cryptographic scheme is employed to fortify any data stored in it, so smart ID cards should be immune from DeCSS fiascos. But is it possible for someone to just make an identical copy of my smart ID card, and 'become me'?"

For information that comes straight from the "HK Special Administrative Region Government," there's more information in here than I expected. Two paragraphs in particular caught my attention:

Besides, immigration officers would be able to update a temporary resident's conditions of stay readily. In anti-illegal immigration operations, law enforcement officers in the field can use a special reader to confirm instantly whether a person's permission to stay was valid without holding him up for further checks.

"More importantly, a smart card with biometric data stored on it will lay the foundation for the Immigration Department to introduce automated passenger clearance system in future which will bring benefits to the travelling public as more immigration counters can be opened without increase of manpower," Mrs Ip said.

Your papers, please?

6 of 113 comments (clear)

  1. Re:Could Someone "Become You"? by Mike1024 · · Score: 4
    Hey,

    Your facial geometry

    Interestingly, according to This review on zdnet, you can often get past commercial face recognition software by taking a photo of the person's face, printing it out as a mask, cutting a nose hole (for someone with a similar nose), and putting on:

    The face recognition systems proved easier to crack than the fingerprint or voice recognition systems. We tried to gain entry using a mask we created by printing a digital image from a color printer. This didn't work. But then we cut a nose hole in the mask and placed the mask on someone with a somewhat similar nose. At the default thresholds, we were able to fool Miros's TrueFace Network several times and Visionics' FaceIt NT once.

    Retina, hand and fingerprint scanners would be as secure as could be expected but facial geometry systems tend to be less secure. Multi-camera set-ups would doubtless be more secure, but the price would start getting very high.

    Personally, my favourite technology is te retina (or iris) scanner, because they can distunguish living from dead, so there's no risk of someone taking a chainsaw to your hand to get access to your bank account. They'll just have to do it at gunpoint...

    Michael

    ...another comment from Michael Tandy.

    --
    "Goodness me, how unlike the FBI to abuse the trust of the American public." -- The Onion
  2. Re:The use of biometrics is dangerous by IvyMike · · Score: 4

    China:

    United States of America :

    My take on it: China commits some serious violations of human rights, and I'd be worried about the smart card IDs there. But I'm a U.S. citizen, and I'd also be worried about smart card IDs here. We've got our own human rights issues to work out. I'm an optimist, so I think that the U.S. won't turn into big brother, but I also think this is possible only through the constant vigilance of people like you and me.

  3. Could Someone "Become You"? by n3rd · · Score: 4

    More importantly, a smart card with biometric data stored on it...

    If Hong Kong has biometric information stored on their smart cards, then more than likely someone could not "become you" since, as most of you know, biometric data is specific to one person.

  4. Smart cards limit data access. by zCyl · · Score: 5

    A coworker of mine was doing smart card security research recently. A smart card is not simply a data storage device, but instead actually contains a small processor. This processor can be programmed to perform public key encryption and hashing, and thus, the smart card is able to limit data access. Rather than pass out the private key to the computer where the person is trying to to authenticate themself, the smartcard receives a secret which can be signed with the private key, passed back out to the authenticating computer, and there compared with the public key with that user. It can be done in a manner similar to PGP signing of email, without the card even possessing the instructions necessary to export the private key from the card.

    The equipment that would be needed to get the private key off would be pretty expensive, since you would need to be able to break the card apart and read individual memory locations with some sort of electron scanning microscope or something. (Which is tougher than it sounds.) However, Hong Kong's use of biometric data makes that even more difficult, because you would then have to modify the person carrying the copied card so their biometric data matches what's stored on the card.

    Essentially, copying a smartcard like this is astronomically difficult, and at the very least, m uch more difficult than xeroxing a paper card or making a duplicate of a plastic card with a hologram.

    1. Re:Smart cards limit data access. by wkurdzio · · Score: 4

      I worked for a company called 3GI for a couple summers and winters when I was off from school. They're a large smart card-solutions firm based out of Williamsburg, VA, in the USA (my hometown). Anyway, for the first year, I was a programmer and was exposed to smart cards for the first time. They're pretty cool and aren't as big a threat to privacy as people think. Here's why: * Smart cards are dumb. The OS on them does a half-dozen important functions: power on, dencrypt the data w/ the correct key (usually a PIN, but biometrics are becoming more popular 'cause PINs aren't very secure), read data, write data, encrypt the data given a key, and power off. Smart cards can't store applications and run them -- they aren't powerful enough for that. If you've seen a card that runs applications, it's a Java card. Even then, Java cards can't do much more than simple math. * Smart cards can't hold a significant amount of data. Cost-effective smart cards hold 32 kilobytes of encrypted data. There are others that hold more, but their cost goes up exponentially as the amount of space goes up. 32K isn't a lot; it's not even enough to hold complete a person's complete demographics and a fingerprint, especially if you want each smart card to hold discrete information about a billion or more people (the population of China). * The encryption methods smart cards use are pretty secure. Some of the older cards use DES; the new cards use 3DES and can be programmed to use other encyrption methods. I don't know much about cryptography, but I understand 3DES is pretty difficult to crack. Perhaps someone more fluent in cryptography can elaborate, but it's safe to say it's very tough to crack a smart card. A colleague at 3GI once related to me that it would take someone several months to brute-force a four-character-PIN-keyed smart card when valid characters are digits and the case-insensitive alphabet. Think about how long it would take someone to crack a smart card keyed on a fingerprint (11 or more coordinates on medium resolution coordinate system)! Even then, you've only decrypted the raw data which is a bunch of 0s and 1s unless you know the exact topology of the data stored on the card. * Smart cards are slow to read. Reading all 32K from a smart card can take 45 seconds. Writing takes even longer. It's a big disadvantage of smart cards (probably their only disadvantage), but at least they can't be "scanned" like memory cards can. * Their are very few standards in the smart card industry. This makes almost every smart card system different even if they use the same cards and/or even the same APIs. Some APIs encrypt data before it's sent to the card where it's encrypted even further. If you don't know the exact layout of how the data is stored on the card, you'll gonna have one hell of a time figuring it out. A lot of companies use data-mangling techniques to mangle data into values that can be stored in a smaller amount of space. A common practice is to store large intergers as two numbers: value 1 = large interger hard-coded integer value 2 = large integer mod hard-coded integer To summarize, smart cards are a good thing and are not a threat to privacy. Please don't mod an otherwise informative post down b/c of this, but a good analogy is the age-old argument that guns don't kill people -- the wrong people armed w/ guns do. Technology isn't a threat to privacy -- the wrong people armed w/ technology are.

  5. Trusted System, Not Trusted User by Andrew+Dvorak · · Score: 4

    With all of the various authentication systems emerging I sometimes tend not to think "Can this user be trusted" but "Can I trust the system?"

    Example:

    • I use my smartcard to access a facility with the understanding that I trust that facility's access control system.
    • If the access control system has been compromised, somebody could make use of the data received by the reader and spit it out to another system therefore forging my identification.

    (yes I understand that my example has to do with controlling access to a facility, but it introduces an interesting idea that more security is in fact less secure.)

    Traditional authentication systems make use of material items which cannot be duplicated easily. I have a drivers' license. It cannot easily be duplicated by just anybody such that it is an exact replica. Many consider these to be analog authentication systems, where, after a period of use, the quality of the materials degrade.

    Newer, digital authentication, is alleged to be even more secure but I must argue otherwise.

    • The quality of any material objects, such as a smart card, do not degrade with use.
    • In a digital format, a duplication can be made such that it is indistinguishable from the original.

    Possibly a solution which makes use of digital and analog identification would be even more secure.

    But hey, this is a topic that requires much more research than I have time .. so make what you will of this comment :-)