mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-05-15 15:44:59 -04:00
6 lines
90 B
Python
6 lines
90 B
Python
#!/usr/bin/env python3
|
|
|
|
import uuid
|
|
|
|
key = uuid.uuid4().hex
|
|
print(key[:16]) #*2to3*
|