-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the apk is turned on it gives me an error in the hashlib python3.6 #1260
Comments
same here, |
+1 |
From Homebrew/legacy-homebrew#21329 and Homebrew/legacy-homebrew#22816 talking about macOS builds, I think this arises from openssl not being present. As far as I cant tell it doesn't actually cause any problems in itself. It will be interesting to see if #1217 prevents these errors from occurring. |
Assuming you're using crystax-ndk-10.3.2, try this out:
|
It's solved by patch openssl |
is it released? |
no |
I created the apk with buildozer and when I turn it on my device it gives me a hashlib error that does not recognize the hash type...
I use python3.6, with python_crystax
In ubuntu 16.04
I/python ( 3589): ERROR:root:code for hash blake2b was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type blake2b I/python ( 3589): ERROR:root:code for hash blake2s was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type blake2s I/python ( 3589): ERROR:root:code for hash sha3_224 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type sha3_224 I/python ( 3589): ERROR:root:code for hash sha3_256 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type sha3_256 I/python ( 3589): ERROR:root:code for hash sha3_384 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type sha3_384 I/python ( 3589): ERROR:root:code for hash sha3_512 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type sha3_512 I/python ( 3589): ERROR:root:code for hash shake_128 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type shake_128 I/python ( 3589): ERROR:root:code for hash shake_256 was not found. I/python ( 3589): Traceback (most recent call last): I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 243, in <module> I/python ( 3589): globals()[__func_name] = __get_hash(__func_name) I/python ( 3589): File "/data/data/org.astro.demo/files/app/crystax_python/stdlib.zip/hashlib.py", line 113, in __get_builtin_constructor I/python ( 3589): raise ValueError('unsupported hash type ' + name) I/python ( 3589): ValueError: unsupported hash type shake_256
The text was updated successfully, but these errors were encountered: