- Timestamp:
- Dec 15, 2010 11:03:16 AM (14 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master
- Children:
- f938d66
- Parents:
- dcffcc6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd_create.py
rdcffcc6 r990b746 7 7 import ABAC 8 8 9 from string import join 9 from string import join, ascii_letters 10 from random import choice 10 11 11 12 from federation.proof import proof … … 238 239 msg['credential'] = acerts 239 240 241 # ZSI will not properly construct an empty message. If nothing has been added 242 # to msg, pick a random localname to ensure the message is created 243 if not msg: 244 msg['experimentID'] = { 245 'localname': join([choice(ascii_letters) for i in range(0,8)],""), 246 } 247 248 240 249 if opts.debug > 1: print >>sys.stderr, msg 241 250
Note: See TracChangeset
for help on using the changeset viewer.