Hello!


I have written a fully working program using the standard C wolfcrypt library, implementing AES-GCM, SHA3, and RSA-4096.

I am now trying to familiarise myself with the wolfcrypt python wrapper so I can replicate my program in python.

I've had some difficulty trying to implement these algorithms using the python wrapper, so I was wondering if I could please get some insight on the following queries:


1)

Is AES-GCM available with the python wrapper? I can't seem to find any MODE_GCM in the source files, the closest is MODE_CTR, so is that equivalent to GCM? I also can't even use MODE_CTR, as it keeps giving the same error- I dug into the source files and found that the conditional that is producing this error seems to indicate that modes other than MODE_CBC are not supported, so is this the case? I've attached a screenshot of the relevant lines here.


2)

Is SHA3 available with the python wrapper? I can't find any mention of it in the source files so I suspect not, but I wanted to confirm that there was no way to use it with the python wrapper before giving up on it.


3)

What is the best way to share RSA keys with the python wrapper? In my C program I was making use of the methods that produce a DER file from a key so that I could transfer public keys, but that doesn't seem to be an option with the python wrapper, so I was wondering how I would go about sharing RSA keys in a similar manner?


Many thanks!