Browse Source

Handle devices without UUID. Disable one time pads if so

Andrea Luzzardi 18 years ago
parent
commit
7c3f71f453
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      tools/pusb_conf

+ 12
- 1
tools/pusb_conf View File

@ -106,7 +106,11 @@ def addDevice(options):
print 'Vendor\t\t: %s' % device.vendor print 'Vendor\t\t: %s' % device.vendor
print 'Model\t\t: %s' % device.product print 'Model\t\t: %s' % device.product
print 'Serial\t\t: %s' % device.serialNumber print 'Serial\t\t: %s' % device.serialNumber
print 'Volume UUID\t: %s (%s)' % (volume['uuid'], volume['device'])
if volume['uuid'] != '':
print 'Volume UUID\t: %s (%s)' % (volume['uuid'], volume['device'])
else:
print
print 'WARNING: No UUID detected for device %s. One time pads will be disabled.' % volume['device']
print print
print 'Save device to %s ?' % options['configFile'] print 'Save device to %s ?' % options['configFile']
@ -134,6 +138,13 @@ def addDevice(options):
e.appendChild(t) e.appendChild(t)
dev.appendChild(e) dev.appendChild(e)
# Disable one time pads if there's no device UUID
if volume['uuid'] == '':
e = doc.createElement('option')
e.setAttribute('name', 'one_time_pad')
e.appendChild(doc.createTextNode('false'))
dev.appendChild(e)
try: try:
f = open(options['configFile'], 'w') f = open(options['configFile'], 'w')
f.write(doc.toxml()) f.write(doc.toxml())


Loading…
Cancel
Save