Sign CSR
This commit is contained in:
5
python_device/src/utils.py
Normal file
5
python_device/src/utils.py
Normal file
@ -0,0 +1,5 @@
|
||||
import string
|
||||
import random
|
||||
|
||||
def rand_str(len: int) -> str:
|
||||
return ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(len))
|
Reference in New Issue
Block a user