fixed manipulation of EF.CardSecurity with CA public key

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@717 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
frankmorgner
2012-02-12 21:19:41 +00:00
parent 2c40f837c7
commit 35ad216428

View File

@@ -202,17 +202,25 @@ class nPA_SE(Security_Environment):
# we don't have a good CA key, so we simply generate an ephemeral one
comp_pubkey = pace.buf2string(pace.TA_STEP3_generate_ephemeral_key(self.eac_ctx))
if not comp_pubkey:
pubkey = pace.CA_STEP2_get_eph_pubkey(self.eac_ctx)
if not comp_pubkey or not pubkey:
pace.print_ossl_err()
raise SwError(SW["WARN_NOINFO63"])
#pubkey = pace.some_function_to_get_the_complete_public_point_for_ca_including_prefixed_04(self.eac_ctx)
#ef_card_security = self.mf.select('fid', 0x011d)
#ef_card_security_data = ef_card_security.getenc('data')
#ef_card_security_data = ef_card_security_data[:61+4+239+2+2-1] + pubkey + ef_card_security_data[61+4+239+2+2-1+len(pubkey):]
#ef_card_security.setdec('data', ef_card_security_data)
# save public key in EF.CardSecurity (and invalidate the signature)
ef_card_security = self.mf.select('fid', 0x011d)
ef_card_security_data = ef_card_security.getenc('data')
ef_card_security_data = ef_card_security_data[:61+4+239+2+1] + pubkey + ef_card_security_data[61+4+239+2+1+len(pubkey):]
ef_card_security.setdec('data', ef_card_security_data)
#print 'pubkey'
#print hexdump(pubkey)
#f=open('test', 'w')
#f.write(ef_card_security_data)
#f.close()
nonce = pace.PACE_STEP1_enc_nonce(self.eac_ctx, self.sec)
print hexdump(nonce)
resp = nPA_SE.__pack_general_authenticate([[0x80, len(nonce), nonce]])
self.eac_step += 1