mirror of
https://github.com/Sneed-Group/pypush-plus-plus
synced 2024-12-25 20:32:29 -06:00
6 lines
132 B
Python
6 lines
132 B
Python
|
from base64 import b64encode
|
||
|
import emulated.nac
|
||
|
|
||
|
vd = emulated.nac.generate_validation_data()
|
||
|
vd = b64encode(vd).decode()
|
||
|
print(vd)
|