Skip to content

Instantly share code, notes, and snippets.

View aonescu's full-sized avatar
🌍
Working from home

Alex Onescu aonescu

🌍
Working from home
  • Chisinau, Moldova
  • 12:33 (UTC +02:00)
View GitHub Profile
@erikbern
erikbern / use_pfx_with_requests.py
Last active January 23, 2025 20:25
How to use a .pfx file with Python requests – also works with .p12 files
import contextlib
import OpenSSL.crypto
import os
import requests
import ssl
import tempfile
@contextlib.contextmanager
def pfx_to_pem(pfx_path, pfx_password):
''' Decrypts the .pfx file to be used with requests. '''