.\" -*- coding: UTF-8 -*- .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man v6.0.2 (Pod::Simple 3.45) .\" .\" Standard preamble: .\" ======================================================================== .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .de IX .. .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .if n .ds AD l .\" .\" Required to disable full justification in groff 1.23.0. .\" ======================================================================== .\" .IX Title "EVP_PKEY_PRINT_PRIVATE 3ssl" .\"******************************************************************* .\" .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* .TH EVP_PKEY_PRINT_PRIVATE 3ssl "7 أبريل 2026" 3.6.2 OpenSSL .if n .ad l .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .nh .SH الاسم EVP_PKEY_print_public، EVP_PKEY_print_private، EVP_PKEY_print_params، EVP_PKEY_print_public_fp، EVP_PKEY_print_private_fp، EVP_PKEY_print_params_fp \- إجراءات طباعة خوارزمية المفتاح العام .SH موجز .IX Header موجز .Vb 1 \& #include \& \& int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); \& int EVP_PKEY_print_public_fp(FILE *fp, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); \& int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); \& int EVP_PKEY_print_private_fp(FILE *fp, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); \& int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); \& int EVP_PKEY_print_params_fp(FILE *fp, const EVP_PKEY *pkey, \& int indent, ASN1_PCTX *pctx); .Ve .SH الوصف .IX Header الوصف تطبع الدوال \fBEVP_PKEY_print_public()\fP و \fBEVP_PKEY_print_private()\fP و \fBEVP_PKEY_print_params()\fP المكونات العامة أو الخاصة أو معاملات المفتاح \fIpkey\fP على التوالي. يُرسل المفتاح إلى \fBBIO\fP \fIout\fP بشكل قابل للقراءة البشرية. يُشير المعامل \fIindent\fP إلى مدى المسافة البادئة للمخرجات المطبوعة. .PP يسمح المعامل \fIpctx\fP بضبط مخرجات الطباعة بدقة باستخدام خيارات طباعة ASN1. إذا ضُبط \fIpctx\fP على NULL فستُستخدم القيم المبدئية. .PP تقوم الدوال \fBEVP_PKEY_print_public_fp()\fP و \fBEVP_PKEY_print_private_fp()\fP و \fBEVP_PKEY_print_params_fp()\fP بنفس عمل الدوال المعتمدة على \fBBIO\fP لكنها تستخدم \fBFILE\fP \fIfp\fP بدلاً من ذلك. .SH ملاحظات .IX Header ملاحظات حالياً لا تتضمن أي خوارزميات مفتاح عام أي خيارات في المعامل \fIpctx\fP. .PP إذا لم يتضمن المفتاح جميع المكونات التي تشير إليها الدالة فستُطبع فقط تلك الموجودة في المفتاح. على سبيل المثال، تمرير مفتاح عام إلى \fBEVP_PKEY_print_private()\fP سيطبع المكونات العامة فقط. .SH "القيم المُرجعة" .IX Header "القيم المُرجعة" ترجع هذه الدوال جميعها 1 للنجاح و 0 أو قيمة سالبة للفشل. على وجه الخصوص، تشير قيمة الإرجاع \-2 إلى أن العملية غير مدعومة من خوارزمية المفتاح العام. .SH "انظر أيضًا" .IX Header "انظر أيضًا" \&\fBEVP_PKEY_CTX_new\fP\|(3)، \&\fBEVP_PKEY_keygen\fP\|(3) .SH التاريخ .IX Header التاريخ أُضيفت الدوال \fBEVP_PKEY_print_public()\fP و \fBEVP_PKEY_print_private()\fP و \fBEVP_PKEY_print_params()\fP في OpenSSL 1.0.0. .PP أُضيفت الدوال \fBEVP_PKEY_print_public_fp()\fP و \fBEVP_PKEY_print_private_fp()\fP و \fBEVP_PKEY_print_params_fp()\fP في OpenSSL 3.0. .SH "حقوق النسخ" .IX Header "حقوق النسخ" حقوق النشر 2006\-2021 لمؤلفي مشروع OpenSSL. جميع الحقوق محفوظة. .PP مرخص بموجب رخصة Apache 2.0 (المشار إليها فيما يلي بـ ”الرخصة“). لا يجوز لك استخدام هذا الملف إلا وفقًا لشروط الرخصة. يمكنك الحصول على نسخة منها في الملف LICENSE الموجود في حزمة التوزيع المصدرية أو على الرابط . .PP .SH ترجمة تُرجمت هذه الصفحة من الدليل بواسطة زايد السعيدي . .PP هذه الترجمة هي وثيقة مجانية؛ راجع .UR https://www.gnu.org/licenses/gpl-3.0.html رخصة جنو العامة الإصدار 3 .UE أو ما بعده للاطلاع على شروط حقوق النشر. لا توجد أي ضمانات. .PP إذا وجدت أي أخطاء في ترجمة صفحة الدليل هذه، يرجى إرسال بريد إلكتروني إلى قائمة بريد المترجمين: .MT kde-l10n-ar@kde.org .ME .