mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
This allows using M-x x509-dwim to decode any PEM encoded OpenSSL certs/keys and display all details via OpenSSL.
14 lines
222 B
EmacsLisp
14 lines
222 B
EmacsLisp
;;; siren-x509.el --- jimeh's Emacs Siren: x509-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for x509-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package x509-mode
|
|
:defer t)
|
|
|
|
(provide 'siren-x509)
|
|
;;; siren-x509.el ends here
|