aboutsummaryrefslogtreecommitdiff
path: root/gnunet/crypto.py
blob: 253f46e90fc8442a01d9be26295a6a382c7b76ec (plain) (blame)
1
2
3
4
5
6
7
8
9
from gnunet import _Key
import gnunet.strings as strings


class EcdsaPublicKey(_Key):
    __bits__ = 256

    def __repr__(self):
        return "gnunet.crypto.EcdsaPublicKey('" + str(self) + "')"