Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
DuniterPy
Commits
a9ba5730
"src/cutecoin/git@git.duniter.org:clients/python/sakia.git" did not exist on "1a642b03153394bead2c388a0aad37fbfef8a97f"
Commit
a9ba5730
authored
6 years ago
by
Vincent Texier
Browse files
Options
Downloads
Patches
Plain Diff
issue
#52
add type hinting to crc_pubkey module
parent
00ccf3b4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
duniterpy/documents/crc_pubkey.py
+35
-6
35 additions, 6 deletions
duniterpy/documents/crc_pubkey.py
with
35 additions
and
6 deletions
duniterpy/documents/crc_pubkey.py
+
35
−
6
View file @
a9ba5730
from
typing
import
TypeVar
,
Type
import
base58
import
re
import
hashlib
from
..constants
import
PUBKEY_REGEX
from
..helpers
import
ensure_str
# required to type hint cls in classmethod
CRCPubkeyType
=
TypeVar
(
'
CRCPubkeyType
'
,
bound
=
'
CRCPubkey
'
)
class
CRCPubkey
:
"""
...
...
@@ -11,23 +16,39 @@ class CRCPubkey:
"""
re_crc_pubkey
=
re
.
compile
(
"
({pubkey_regex}):([A-Za-z0-9]{{3}})
"
.
format
(
pubkey_regex
=
PUBKEY_REGEX
))
def
__init__
(
self
,
pubkey
,
crc
)
:
def
__init__
(
self
,
pubkey
:
str
,
crc
:
str
)
->
None
:
"""
Creates a pubkey with a crc
:param pubkey:
:param pubkey: Public key
:param crc: CRC
"""
self
.
pubkey
=
pubkey
self
.
crc
=
crc
@classmethod
def
from_str
(
cls
,
crc_pubkey
):
def
from_str
(
cls
:
Type
[
CRCPubkeyType
],
crc_pubkey
:
str
)
->
CRCPubkeyType
:
"""
Return CRCPubkey instance from CRC public key string
:param crc_pubkey: CRC public key
:return:
"""
data
=
CRCPubkey
.
re_crc_pubkey
.
match
(
crc_pubkey
)
if
data
is
None
:
raise
Exception
(
"
Could not parse CRC public key {0}
"
.
format
(
crc_pubkey
))
pubkey
=
data
.
group
(
1
)
crc
=
data
.
group
(
2
)
return
cls
(
pubkey
,
crc
)
@classmethod
def
from_pubkey
(
cls
,
pubkey
):
def
from_pubkey
(
cls
:
Type
[
CRCPubkeyType
],
pubkey
:
str
)
->
CRCPubkeyType
:
"""
Return CRCPubkey instance from public key string
:param pubkey: Public key
:return:
"""
hash_root
=
hashlib
.
sha256
()
hash_root
.
update
(
base58
.
b58decode
(
pubkey
))
hash_squared
=
hashlib
.
sha256
()
...
...
@@ -37,8 +58,16 @@ class CRCPubkey:
crc
=
b58_checksum
[:
3
]
return
cls
(
pubkey
,
crc
)
def
is_valid
(
self
):
def
is_valid
(
self
)
->
bool
:
"""
Return True if CRC is valid
:return:
"""
return
CRCPubkey
.
from_pubkey
(
self
.
pubkey
).
crc
==
self
.
crc
def
__str__
(
self
):
def
__str__
(
self
)
->
str
:
"""
Return string representation of instance
:return:
"""
return
"
{:}:{:}
"
.
format
(
self
.
pubkey
,
self
.
crc
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment