Victor Wagner

Results 10 comments of Victor Wagner

I've been hit with this bug too. But in my case I want changes in the singlefile storage to be propagated to server. My version of vdirsynccer is 0.16.7 radicake...

I've found quite simple solution: Replace line string = b''.join(xml_string) with ``` if len(xml_string)==1: string = xml_string[0][:] else: string=b''.join(xml_string) ``` slicing with [:] converts mmap to string and doesn't harm...

Really, I see no harm in reading entire request in memory. Request is going to be parsed by lxml into DOM anyway and libxml2 DOM typically consumes order of magnitude...

Hi, Jason I'm very glad that somebody else is interested in **working on** ctypescrypto rathere than just using it. Unfortunately I have almost abandoned this project about two years ago...

Problem with using such approach with OpenSSL is that it is too versatile and too underdocumented, not to mention evolving over time. It is quite hard to tell whether particular...

It' s nice. I'm not sure that I would merge it as is, because this would cause incompatibile behavoir in python2 and python3 but it is definitely right way to...

Look into ctypescrypto/x509.py where I've tried to make consistent behavoir between python2 and python3. Problem is that by default user uses str and expects something human readable from it. Really,...

Thanks, good idea. It seems that in the time when I've wrote this code Windows python didn't bundle version of OpenSSL library, which is new enough for my purposes. If...

Really CMS stands for "cryptrographic MESSAGE syntax" and messages typically are human readable. So, I don't think that it is good idea to interpret them as binary data by default....

Of course, you are right. Binary data ought to be supported by encryption/signature formats. But I have to think a bit how to make interface more consistent and easy to...