Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 163) sorted by relevance

1234567

/lib/mbedtls/external/mbedtls/scripts/
A Dabi_check.py161 if version.repository:
164 version.revision, version.repository
169 version.repository, version.revision],
177 version.revision
249 def _pretty_revision(version): argument
250 if version.revision == version.commit:
251 return version.revision
253 return "{} ({})".format(version.revision, version.commit)
262 mbed_module, version.revision, version.version
616 version="old",
[all …]
A Dci.requirements.txt5 # Use a known version of Pylint, because new versions tend to add warnings
7 # 2.4.4 is the version in Ubuntu 20.04. It supports Python >=3.5.
10 # Use the earliest version of mypy that works with our code base.
16 # but our CI has Python 3.5. So let pip install the newest version that's
/lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/
A Dpsa_storage.py103 version: Optional[int] = None,
111 self.version = self.LATEST_VERSION if version is None else version
153 header = self.MAGIC + self.pack('L', self.version)
154 if self.version == 0:
180 key = Key(version=0,
191 key = Key(version=0,
/lib/mbedtls/external/mbedtls/tests/scripts/
A Dcheck-python-files.sh21 import packaging.version
26 if packaging.version.parse(actual) < packaging.version.parse(wanted):
43 check_version mypy.version 0.780
A Dgenerate_psa_tests.py427 def __init__(self, info: psa_information.Information, version: int, forward: bool) -> None:
438 self.version = version #type: int
531 key = StorageTestData(version=self.version,
562 key1 = StorageTestData(version=self.version,
615 key = StorageTestData(version=self.version,
659 key1 = StorageTestData(version=self.version,
666 key2 = StorageTestData(version=self.version,
705 def __init__(self, info: psa_information.Information, version: int) -> None:
706 super().__init__(info, version, True)
741 key = StorageTestData(version=self.version,
/lib/mbedtls/external/mbedtls/docs/architecture/testing/
A Dpsa-storage-format-testing.md7 … only validates that it's possible to load a key that was saved with the version of Mbed TLS under…
15 … is: as a user of Mbed TLS, I want to store a key under version V and read it back under version W…
17 … way would be difficult because we'd need to have version V of Mbed TLS available when testing ver…
19 …irect approach consists of generating test data under version V, and reading it back under version
23 …nsure the stability of the storage format by creating test cases under a version V of Mbed TLS, wh…
27 …passes with version V, this means that the test data is consistent with what the implementation do…
29version V and load-and-check passing on version W with the same data that proves that version W ca…
37version of Mbed TLS, since there would be no indication that more test cases used to exist. It can…
39 …ide to stop supporting old keys (which should only be done by retiring a version of the storage fo…
56 … the desired test cases for keys created with the current storage format version. When the storage…
/lib/mbedtls/external/mbedtls/programs/test/cmake_package/
A Dcmake_package.c20 char version[18]; in main() local
22 mbedtls_version_get_string_full(version); in main()
24 mbedtls_printf("Built against %s\n", version); in main()
/lib/mbedtls/external/mbedtls/programs/test/cmake_package_install/
A Dcmake_package_install.c21 char version[18]; in main() local
23 mbedtls_version_get_string_full(version); in main()
25 mbedtls_printf("Built against %s\n", version); in main()
/lib/mbedtls/external/mbedtls/programs/test/cmake_subproject/
A Dcmake_subproject.c21 char version[18]; in main() local
23 mbedtls_version_get_string_full(version); in main()
25 mbedtls_printf("Built against %s\n", version); in main()
/lib/lzma/
A Dhistory.txt100 - Small changes in .h files in ANSI-C version.
106 C++ version of LZMA encoder could not correctly compress
117 - The bug was fixed in C++ version of LZMA Decoder:
130 - Java version of LZMA SDK was included
142 - LZMA# SDK (C#.NET version) was included
180 - New additional version of ANSI-C LZMA Decoder with zlib-like interface:
204 Old version of LZMA Decoder now is in file LzmaDecodeSize.c.
208 - Simplified version of .7z ANSI-C Decoder was included
255 - Original version of LZMA SDK
268 1999-01-02: First version of 7-Zip was released
/lib/fwu_updates/
A Dfwu_v1.c39 data->version = mdata->version; in fwu_data_init()
169 if (mdata.version != 0x1) { in fwu_init()
171 mdata.version, FWU_MDATA_VERSION); in fwu_init()
A DKconfig35 bool "Enable support FWU Metadata version 1"
39 Metadata version 1 access.
42 bool "Enable support FWU Metadata version 2"
47 Metadata version 2 access.
A Dfwu_v2.c37 data->version = mdata->version; in fwu_data_init()
132 if (g_mdata.version != FWU_MDATA_VERSION) { in fwu_get_mdata_mandatory()
134 part, g_mdata.version, FWU_MDATA_VERSION); in fwu_get_mdata_mandatory()
/lib/crypto/
A Dpkcs7_parser.c289 unsigned version; in pkcs7_note_signeddata_version() local
294 ctx->msg->version = version = *(const u8 *)value; in pkcs7_note_signeddata_version()
295 switch (version) { in pkcs7_note_signeddata_version()
323 unsigned version; in pkcs7_note_signerinfo_version() local
328 version = *(const u8 *)value; in pkcs7_note_signerinfo_version()
329 switch (version) { in pkcs7_note_signerinfo_version()
334 if (ctx->msg->version != 1) in pkcs7_note_signerinfo_version()
340 if (ctx->msg->version == 1) in pkcs7_note_signerinfo_version()
/lib/efi_client/
A Defi_app.c45 u32 version; in efi_get_mmap() local
49 ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version); in efi_get_mmap()
57 ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version); in efi_get_mmap()
64 *versionp = version; in efi_get_mmap()
/lib/mbedtls/external/mbedtls/programs/x509/
A Dcert_write.c199 int version; /* CRT version */ member
366 opt.version = DFL_VERSION - 1; in main()
448 opt.version = atoi(q); in main()
449 if (opt.version < 1 || opt.version > 3) { in main()
453 opt.version--; in main()
845 mbedtls_x509write_crt_set_version(&crt, opt.version); in main()
866 if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && in main()
884 if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && in main()
901 if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && in main()
919 if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && in main()
[all …]
/lib/
A Dlz4_wrapper.c29 u8 flags, version, independent_blocks, has_content_size; in ulz4fn() local
42 version = (flags >> 6) & 0x3; in ulz4fn()
48 if (magic != LZ4F_MAGIC || version != 1) in ulz4fn()
/lib/mbedtls/external/mbedtls/
A DBRANCHES.md9 this is where the next major version of Mbed TLS (version 4.0) is being
22 API compatibility in the `main` branch across minor version changes (e.g.
24 compatibility on major version changes (e.g. from 3.x to 4.0). We also maintain
37 modification with any later release x.y'.z' with the same major version
74 We intend to maintain this backward compatibility throughout a major version
79 LTS, but future major version upgrades (for example from 2.28.x/3.x to 4.y)
93 minimum version of tools needed to build the code. The only exception, as
115 Users are urged to always use the latest version of a maintained branch.
/lib/mbedtls/external/mbedtls/library/
A Dpsa_crypto_storage.c227 uint8_t version[4]; member
246 MBEDTLS_PUT_UINT32_LE(0, storage_format->version, 0); in psa_format_key_data_for_storage()
275 uint32_t version; in psa_parse_key_data_from_storage() local
286 version = MBEDTLS_GET_UINT32_LE(storage_format->version, 0); in psa_parse_key_data_from_storage()
287 if (version != 0) { in psa_parse_key_data_from_storage()
A Dx509_crl.c306 while (crl->version != 0 && crl->next != NULL) { in mbedtls_x509_crl_parse_der()
310 if (crl->version != 0 && crl->next == NULL) { in mbedtls_x509_crl_parse_der()
379 if ((ret = x509_crl_get_version(&p, end, &crl->version)) != 0 || in mbedtls_x509_crl_parse_der()
385 if (crl->version < 0 || crl->version > 1) { in mbedtls_x509_crl_parse_der()
390 crl->version++; in mbedtls_x509_crl_parse_der()
453 if (crl->version == 2) { in mbedtls_x509_crl_parse_der()
606 prefix, crl->version); in mbedtls_x509_crl_info()
/lib/lwip/lwip/src/include/lwip/
A Dinit.h.cmake.in52 /** X.x.x: Major version of the stack */
54 /** x.X.x: Minor version of the stack */
72 /* Some helper defines to get a version string */
83 /** Provides the version of the stack */
86 /** Provides the version of the stack as string */
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_version.data1 Check compile time library version
4 Check runtime library version
A Dtest_suite_x509parse.data1306 X509 CRT ASN1 (TBS, invalid version tag, serial missing)
1314 X509 CRT ASN1 (TBS, inv inner version tag)
1335 X509 CRT ASN1 (TBS, valid version tag, length exceeds TBS)
1339 X509 CRT ASN1 (TBS, valid version tag + length, unknown version number 3)
1343 X509 CRT ASN1 (TBS, valid version tag + length, unknown version number 4)
1347 X509 CRT ASN1 (TBS, valid version tag + length, version number overflow)
2455 X509 CRL ASN1 (TBSCertList, version tag len missing)
2458 X509 CRL ASN1 (TBSCertList, version correct, alg missing)
2560 X509 CRL ASN1 (invalid version 2)
2563 X509 CRL ASN1 (invalid version overflow)
[all …]
/lib/mbedtls/external/mbedtls/.github/ISSUE_TEMPLATE/
A Dbug_report.md16 Mbed TLS version (number or commit id):
17 Operating system and version:
/lib/lwip/lwip/src/apps/snmp/
A Dsnmp_msg.c87 snmp_version_enabled(u8_t version) in snmp_version_enabled() argument
89 if (version == SNMP_VERSION_1) { in snmp_version_enabled()
91 } else if (version == SNMP_VERSION_2c) { in snmp_version_enabled()
95 else if (version == SNMP_VERSION_3) { in snmp_version_enabled()
124 snmp_version_enable(u8_t version, u8_t enable) in snmp_version_enable() argument
126 if (version == SNMP_VERSION_1) { in snmp_version_enable()
128 } else if (version == SNMP_VERSION_2c) { in snmp_version_enable()
132 else if (version == SNMP_VERSION_3) { in snmp_version_enable()
457 if ((request->version == SNMP_VERSION_2c) || request->version == SNMP_VERSION_3) { in snmp_process_varbind()
833 request->version = (u8_t)s32_value; in snmp_parse_inbound_frame()
[all …]

Completed in 133 milliseconds

1234567