NisHera
9 years agoValued Contributor
hashlib in python
When I run following in python gets nothing (empty log messages) import requests, json, hashlib
def ABCD ():
Log.Message("",hashlib.algorithms_available)
Log.Message("",hashlib.algorithms_guara...
- 9 years ago
Hi,
hashlib.algorithms_available and hashlib.algorithms_guaranteed returns a set of data. You should convert it to the string to post into the TC log:
Log.Message("", str(hashlib.algorithms_available))