From a390d412cfa0ec23a3373eb3246f1fb75719b994 Mon Sep 17 00:00:00 2001 From: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Date: Thu, 6 Feb 2025 19:31:09 +0200 Subject: [PATCH] openssl-x509: add Arabic translation (#15617) --- pages.ar/common/openssl-x509.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.ar/common/openssl-x509.md diff --git a/pages.ar/common/openssl-x509.md b/pages.ar/common/openssl-x509.md new file mode 100644 index 00000000000000..402ca8360145f5 --- /dev/null +++ b/pages.ar/common/openssl-x509.md @@ -0,0 +1,20 @@ +# openssl x509 + +> أمر OpenSSL لإدارة شهادات X.509. +> لمزيد من التفاصيل: . + +- عرض معلومات الشهادة: + +`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}}`