Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
e58a47ca
Commit
e58a47ca
authored
Aug 09, 2023
by
Emmy Vouriot
Committed by
Jérome Perrin
Mar 06, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove int cast from bytes with ord()
parent
11d33982
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
product/ERP5Form/CaptchasDotNet.py
product/ERP5Form/CaptchasDotNet.py
+3
-1
No files found.
product/ERP5Form/CaptchasDotNet.py
View file @
e58a47ca
...
...
@@ -31,6 +31,7 @@
from
hashlib
import
md5
import
random
from
Products.ERP5Type.Utils
import
str2bytes
import
six
class
CaptchasDotNet
:
def
__init__
(
self
,
client
,
secret
,
...
...
@@ -136,7 +137,8 @@ class CaptchasDotNet:
# Compute password
correct_password
=
''
for
pos
in
range
(
password_length
):
letter_num
=
ord
(
digest
[
pos
])
%
len
(
password_alphabet
)
digest_char
=
ord
(
digest
[
pos
])
if
six
.
PY2
else
digest
[
pos
]
letter_num
=
digest_char
%
len
(
password_alphabet
)
correct_password
+=
password_alphabet
[
letter_num
]
return
correct_password
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment