ssl 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #------------------------------------------------------------------------------
  2. # $File: ssl,v 1.7 2024/06/10 23:23:55 christos Exp $
  3. # ssl: file(1) magic for SSL file formats
  4. # Type: OpenSSL certificates/key files
  5. # From: Nicolas Collignon <tsointsoin@gmail.com>
  6. 0 string -----BEGIN\040CERTIFICATE----- PEM certificate
  7. !:mime application/x-pem-file
  8. 0 string -----BEGIN\040CERTIFICATE\040REQ PEM certificate request
  9. !:mime application/x-pem-file
  10. # Update: Joerg Jenderek
  11. # Reference: https://github.com/openssl/openssl/blob/master/include/openssl/pem.h
  12. # http://mark0.net/download/triddefs_xml.7z/defs/k/key-rsa-pvt.trid.xml
  13. # Note: called "ASCII armored RSA Private Key" by TrID
  14. 0 string -----BEGIN\040RSA\040PRIVATE PEM RSA private key
  15. #!:mime text/plain
  16. !:mime text/x-ssl-private-key
  17. !:ext key/priv
  18. 0 string -----BEGIN\040RSA\040PRIVATE PEM RSA private key
  19. !:mime application/x-pem-file
  20. 0 string -----BEGIN\040DSA\040PRIVATE PEM DSA private key
  21. !:mime application/x-pem-file
  22. 0 string -----BEGIN\040EC\040PRIVATE PEM EC private key
  23. !:mime application/x-pem-file
  24. 0 string -----BEGIN\040ECDSA\040PRIVATE PEM ECDSA private key
  25. !:mime application/x-pem-file
  26. # From: Joerg Jenderek
  27. # Reference: https://github.com/openssl/openssl/blob/master/include/openssl/pem.h
  28. 0 string -----BEGIN\040RSA\040PUBLIC\040KEY----- PEM RSA public key
  29. #!:mime text/plain
  30. !:mime text/x-ssl-public-key
  31. !:ext pub
  32. # From Luc Gommans
  33. # OpenSSL enc file (recognized by a magic string preceding the password's salt)
  34. 0 string Salted__ openssl enc'd data with salted password
  35. # Using the -a or -base64 option, OpenSSL will base64-encode the data.
  36. 0 string U2FsdGVkX1 openssl enc'd data with salted password, base64 encoded