4

For a project I am working on I would like to use a pgcrypto compatible encryption in python. And specific the public key encryption part.

The problem I have is that most (all) of the implementations make use of subprocess like approaches to fork gpg, as I have to encrypt a lot of data (50.000+ entries per session) this approach will not work for me.

Can someone give me some pointers how that this could be achieved?

Wouter
  • 371
  • 2
  • 12

1 Answers1

1

Have a look at PyCrypto, it doesn't seem to use forking. pgcrypto can be configured to fit most crypto configurations.

Stefan Rasmusson
  • 5,445
  • 3
  • 21
  • 48
  • Thank you, I guess that my question was nog clear enough. I am looking for a more detailed answer from someone that has experience with a simular problem. I know PyCrypto could be used, but I have no clear idea on how to use it correctly. – Wouter Feb 06 '13 at 09:30