mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-05 11:55:44 +02:00
openssl-req: add Arabic translation (#15616)
This commit is contained in:
parent
4beae2334b
commit
72d1864ca6
1 changed files with 12 additions and 0 deletions
12
pages.ar/common/openssl-req.md
Normal file
12
pages.ar/common/openssl-req.md
Normal file
|
@ -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}}`
|
Loading…
Add table
Reference in a new issue