windows cetificates

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • m.banaouas

    #1

    windows cetificates

    hi,

    is there any way to decrypt an email (already read with poplib, so
    available on client side) with python using a window certificate (those
    we can see on ie/internet options/content/certificates) ?

    the purpose is to decrypt an email sent and crypted by the sender with
    both his own certificate and the recipient one.

    thanks for any help.
  • Roger Upole

    #2
    Re: windows cetificates


    m.banaouas wrote:
    hi,
    >
    is there any way to decrypt an email (already read with poplib, so available on client side) with python using a window
    certificate (those we can see on ie/internet options/content/certificates) ?
    >
    the purpose is to decrypt an email sent and crypted by the sender with both his own certificate and the recipient one.
    >
    thanks for any help.
    If the messages use standard encoding, you should be able to use CAPICOM.
    The interfaces are fairly simple to use through win32com.client .
    The 'capicom.envelo peddata' object encrypts and decrypts using certificate keys.

    Roger




    ----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
    http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    ---= East/West-Coast Server Farms - Total Privacy via Encryption =---

    Comment

    • m.banaouas

      #3
      Re: windows cetificates

      thank you
      I will take a look on capicom ...

      Roger Upole a écrit :
      m.banaouas wrote:
      >hi,
      >>
      >is there any way to decrypt an email (already read with poplib, so available on client side) with python using a window
      >certificate (those we can see on ie/internet options/content/certificates) ?
      >>
      >the purpose is to decrypt an email sent and crypted by the sender with both his own certificate and the recipient one.
      >>
      >thanks for any help.
      >
      If the messages use standard encoding, you should be able to use CAPICOM.
      The interfaces are fairly simple to use through win32com.client .
      The 'capicom.envelo peddata' object encrypts and decrypts using certificate keys.
      >
      Roger
      >
      >
      >
      >
      ----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
      http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
      ---= East/West-Coast Server Farms - Total Privacy via Encryption =---

      Comment

      Working...