server.eap-tls.xml.svn-base

来自「在Diameter3588协议的基础上开发的软件」· SVN-BASE 代码 · 共 53 行

SVN-BASE
53
字号
<?xml version="1.0" encoding="UTF-8"?><!-- Configuration file for server always starts with "configuration_server" element as root --><configuration_server xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"               xsi:noNamespaceSchemaLocation='eap-tls.configuration.xsd'>	<!-- Encryption section. This section has a fixed list of elements.		This information is needed for OpenSSL to work -->	<encryption>		<!-- Pass phrase for server cryptographic files -->		<pass_phrase>servidor</pass_phrase>		<!-- Key file -->		<key_file>./tests/tls_config/auth/srv-key.pem</key_file>		<!-- Certificate file -->		<cert_file>./tests/tls_config/auth/srv-cert.pem</cert_file>		<!-- File used to build ramdom numbers -->		<random>./tests/tls_config/auth/random</random>		<!-- Path for Certification Authorities -->		<ca_path>./tests/tls_config/auth</ca_path>		<!-- Certification Authority's certificate for Certification Authority that signs server certificate -->		<ca_cert>./tests/tls_config/auth/ca-cert.pem</ca_cert>		<!-- File implementation for Diffie-Hellman algorithm -->		<dh>./tests/tls_config/auth/dh</dh>		<!-- RSA Key -->		<rsa_key>0</rsa_key>		<!-- Diffie-Hellman Key -->		<dh_key>1</dh_key>		<!-- RSA key length -->		<rsa_key_length>512</rsa_key_length>		<!-- Diffie-Hellman key lenght -->		<dh_key_length>512</dh_key_length>		<!-- Maximum depth for the certificate chain verification that shall be allowed -->		<verify_depth>1</verify_depth>		<!-- Type of certificates:			0: ASN1			1: PEM		-->		<file_type>1</file_type>	</encryption>	<!-- Fragmentation section. This section has a fixed list of elements.		This information is needed in packet fragmentation -->	<fragmentation>		<!-- Initial value for lenght flag in fragmentation -->		<include_length>false</include_length>		<!-- Fragment size -->		<fragment_size>500</fragment_size>	</fragmentation>	<!-- Server specific section. This section has a fixed list of elements.		This information is needed in packet fragmentation -->	<server>		<!-- Context identifier for server's OpenSSL initialization -->		<id_context>100</id_context>	</server></configuration_server>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?