有没有办法使用 libsodium 生成公钥和私钥对?我尝试使用函数 crypto_box_keypair,但我不断收到错误消息。我一直在网上搜索信息,但是,我找到的信息要么不在 python 中,要么不起作用。如果有人帮助我,我将不胜感激。
这是我到目前为止在 python 中所做的代码。
import pysodium
private_key = pysodium.crypto_box_keypair()
public_key = pysodium.crypto_box_keypair()
print("Private Key:", private_key)
print("Public Key:", public_key)
我得到的错误是:
AttributeError: 'module' object has no attribute 'crypto_box_keypair'