Cert-Blitz is a Python package that decodes and analyzes digital certificates and TLS server configurations from text input. It extracts and validates structured information like issuer, subject, validity dates, and encryption algorithms, providing clear, formatted outputs that highlight key certificate properties, expiration warnings, and potential security issues.
pip install cert_blitzfrom cert_blitz import cert_blitz
user_input = """
-----BEGIN CERTIFICATE-----
MIIDXTCCAkWgAwIBAgIJAL8...
-----END CERTIFICATE-----
"""
response = cert_blitz(user_input)
print(response)You can use any LLM compatible with LangChain. Here are examples using different LLMs:
from langchain_openai import ChatOpenAI
from cert_blitz import cert_blitz
llm = ChatOpenAI()
response = cert_blitz(user_input, llm=llm)
print(response)from langchain_anthropic import ChatAnthropic
from cert_blitz import cert_blitz
llm = ChatAnthropic()
response = cert_blitz(user_input, llm=llm)
print(response)from langchain_google_genai import ChatGoogleGenerativeAI
from cert_blitz import cert_blitz
llm = ChatGoogleGenerativeAI()
response = cert_blitz(user_input, llm=llm)
print(response)By default, Cert-Blitz uses the LLM7 API. You can pass your API key directly or via an environment variable.
from cert_blitz import cert_blitz
response = cert_blitz(user_input, api_key="your_api_key")
print(response)export LLM7_API_KEY="your_api_key"from cert_blitz import cert_blitz
response = cert_blitz(user_input)
print(response)user_input(str): The user input text to process.llm(Optional[BaseChatModel]): The LangChain LLM instance to use. If not provided, the default ChatLLM7 will be used.api_key(Optional[str]): The API key for LLM7. If not provided, the environment variableLLM7_API_KEYwill be used.
Cert-Blitz uses ChatLLM7 from langchain_llm7 by default. You can safely pass your own LLM instance if you want to use another LLM.
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you want higher rate limits, you can pass your own API key via the environment variable LLM7_API_KEY or directly via the api_key parameter. You can get a free API key by registering at LLM7.
If you encounter any issues, please report them on the GitHub issues page.
- Eugene Evstafev
- Email: hi@eugene.plus
- GitHub: chigwell