fork(17) download
  1. import binascii;
  2. #python
  3. code=""
  4. mac="aa:bb:cc:dd:ee:ff"
  5. macInt = [int(t,16) for t in mac.split(":")]
  6. for i in range(3):
  7. t = macInt[i*2] + macInt[i*2+1]
  8. code+="{0:02x}".format(t)
  9. print(code)
  10. code="neoden2015 {0} Language".format(code)
  11. password=binascii.crc32(code.encode('utf-8'))% (1<<32)
  12. print(password)
Success #stdin #stdout 0.01s 7252KB
stdin
Standard input is empty
stdout
1ed
1030600940