Skip to content

Commit

Permalink
openssl-req: add Arabic translation (#15616)
Browse files Browse the repository at this point in the history
  • Loading branch information
MachiavelliII authored Feb 6, 2025
1 parent 4beae23 commit 72d1864
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pages.ar/common/openssl-req.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# openssl req

> أمر OpenSSL لإدارة طلبات توقيع الشهادات PKCS#10.
> لمزيد من التفاصيل: <https://www.openssl.org/docs/manmaster/man1/openssl-req.html>.
- إنشاء طلب توقيع شهادة لإرساله إلى جهة تصديق:

`openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}`

- إنشاء شهادة موقعة ذاتيًا وزوج مفاتيح مقابلة، وحفظهما في ملف:

`openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}`

0 comments on commit 72d1864

Please sign in to comment.