1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 21:15:35 +02:00

openssl-x509: add Arabic translation (#15617)

This commit is contained in:
Machiavelli 2025-02-06 19:31:09 +02:00 committed by GitHub
parent 72d1864ca6
commit a390d412cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
# openssl x509
> أمر OpenSSL لإدارة شهادات X.509.
> لمزيد من التفاصيل: <https://www.openssl.org/docs/manmaster/man1/openssl-x509.html>.
- عرض معلومات الشهادة:
`openssl x509 -in {{filename.crt}} -noout -text`
- عرض تاريخ انتهاء صلاحية الشهادة:
`openssl x509 -enddate -noout -in {{filename.pem}}`
- تحويل الشهادة بين الترميز الثنائي DER والترميز النصي PEM:
`openssl x509 -inform {{der}} -outform {{pem}} -in {{original_certificate_file}} -out {{converted_certificate_file}}`
- تخزين المفتاح العام للشهادة في ملف:
`openssl x509 -in {{certificate_file}} -noout -pubkey -out {{output_file}}`