-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openssl-x509: add Arabic translation (#15617)
- Loading branch information
1 parent
72d1864
commit a390d41
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}}` |