1 (edited by m_u_h 2024-06-14 20:46:27)

Topic: WolfCrypt version on Linux machine

Hi,
Is it possible to get wolfCrypt version  installed on Linux machine using python? Something similar to this given in manual e.g. python3 -c "from wolfcrypt.hashes import Sha; print(Sha().hexdigest())".
Thanks,
Regards,
MUH

Share

Re: WolfCrypt version on Linux machine

Hi MUH,

The current wolfCrypt version is stored in the variable __version__  in wolfcrypt/_version.py, you can get it as follows:
from wolfcrypt._version import __version__

Thanks,
Kareem

Share