fork download
  1. import binascii;
  2. #python
  3. code=""
  4. mac="00:e0:b4:90:16:2d"
  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 7132KB
stdin
Standard input is empty
stdout
e014443
2425378435