omz / Pythonista-Issues

Issue tracker for Pythonista (iOS)
168 stars 14 forks source link

Cryptography module on Pythonista #556

Open Uasmi opened 6 years ago

Uasmi commented 6 years ago

Hey guys, So I'm trying to test out simple code (*** are hidden name/key):

from azure.storage.queue import QueueService, QueueMessageFormat

queue_service = QueueService(account_name='***', account_key='***')
queue_service.encode_function = QueueMessageFormat.text_base64encode

queue_service.put_message('samples-python', unicode(u'https://thumbs.dreamstime.com/b/two-bananas-isolated-6856971.jpg'))

What it really does is just sends a queue message.

However, I get an error raised which is missing module at cryptography

from cryptography import utils
from cryptography.exceptions import AlreadyFinalized
from cryptography.hazmat.bindings._padding import lib

The one is missing is: cryptography.hazmat.bindings._padding

Any ideas? I'm fairly new to Pythonista.

scj643 commented 5 years ago

We don't have the Cryptography module and it doesn't seem like it will be implemented

scj643 commented 5 years ago

49 is the original issue with Cryptography