Home
last modified time | relevance | path

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

1234

/optee_os/core/lib/libtomcrypt/src/pk/ec25519/
A Dec25519_import_pkcs8.c38 unsigned long version, key_len; in ec25519_import_pkcs8() local
51 LTC_ASN1_SHORT_INTEGER, 1uL, &version, in ec25519_import_pkcs8()
60 if ((err == CRYPT_INPUT_TOO_LONG) && (version == 1)) { in ec25519_import_pkcs8()
61 version = 0; in ec25519_import_pkcs8()
74 if (version == 0) { in ec25519_import_pkcs8()
A Dec25519_export.c36 unsigned long version, private_key_len = sizeof(private_key); in ec25519_export() local
64 version = 0; in ec25519_export()
66 LTC_ASN1_SHORT_INTEGER, 1uL, &version, in ec25519_export()
/optee_os/core/lib/libtomcrypt/src/pk/dh/
A Ddh_import.c26 unsigned long version; in dh_import() local
38 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import()
45 if (version == 0) { in dh_import()
49 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import()
65 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import()
A Ddh_export.c27 unsigned long version = 0; in dh_export() local
37 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_export()
48 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_export()
/optee_os/out/arm/ta_arm64-lib/libmbedtls/mbedtls/library/
A D.version.o.cmd1version.o := /usr/bin/ccache /home/test/workspace/code/optee_3.16/build/../toolchains/aarch64/bin/…
A D.version.o.d1 out/arm/ta_arm64-lib/libmbedtls/mbedtls/library/version.o: \
2 lib/libmbedtls/mbedtls/library/version.c \
/optee_os/out/arm/ta_arm32-lib/libmbedtls/mbedtls/library/
A D.version.o.cmd1version.o := /usr/bin/ccache /home/test/workspace/code/optee_3.16/build/../toolchains/aarch32/bin/…
A D.version.o.d1 out/arm/ta_arm32-lib/libmbedtls/mbedtls/library/version.o: \
2 lib/libmbedtls/mbedtls/library/version.c \
/optee_os/core/lib/libfdt/
A Dfdt.c59 size_t fdt_header_size_(uint32_t version) in fdt_header_size_() argument
61 if (version <= 1) in fdt_header_size_()
63 else if (version <= 2) in fdt_header_size_()
65 else if (version <= 3) in fdt_header_size_()
67 else if (version <= 16) in fdt_header_size_()
/optee_os/core/arch/arm/kernel/
A Dlink.mk42 ldargs-tee.elf := $(link-ldflags) $(link-objs) $(link-out-dir)/version.o \
93 init-ldadd := $(link-objs-init) $(link-out-dir)/version.o $(link-ldadd) \
97 $(call gen-version-o)
139 version-o-cflags = $(filter-out -g3,$(core-platform-cflags) \
148 define gen-version-o
157 | $(CCcore) $(version-o-cflags) \
158 -xc - -c -o $(link-out-dir)/version.o
160 $(link-out-dir)/version.o:
161 $(call gen-version-o)
172 cleanfiles += $(link-out-dir)/version.o
A Darm32_gicv3_sysreg.txt8 @ GIC architecture version 3.0 and version 4.0
/optee_os/lib/libmbedtls/mbedtls/library/
A Dx509write_crt.c48 ctx->version = MBEDTLS_X509_CRT_VERSION_3; in mbedtls_x509write_crt_init()
63 int version ) in mbedtls_x509write_crt_set_version() argument
65 ctx->version = version; in mbedtls_x509write_crt_set_version()
367 if( ctx->version == MBEDTLS_X509_CRT_VERSION_3 ) in mbedtls_x509write_crt_der()
446 if( ctx->version != MBEDTLS_X509_CRT_VERSION_1 ) in mbedtls_x509write_crt_der()
450 mbedtls_asn1_write_int( &c, buf, ctx->version ) ); in mbedtls_x509write_crt_der()
A Dx509_crl.c317 while( crl->version != 0 && crl->next != NULL ) in mbedtls_x509_crl_parse_der()
320 if( crl->version != 0 && crl->next == NULL ) in mbedtls_x509_crl_parse_der()
392 if( ( ret = x509_crl_get_version( &p, end, &crl->version ) ) != 0 || in mbedtls_x509_crl_parse_der()
399 if( crl->version < 0 || crl->version > 1 ) in mbedtls_x509_crl_parse_der()
405 crl->version++; in mbedtls_x509_crl_parse_der()
475 if( crl->version == 2 ) in mbedtls_x509_crl_parse_der()
637 prefix, crl->version ); in mbedtls_x509_crl_info()
A Dx509_csr.c156 if( ( ret = x509_csr_get_version( &p, end, &csr->version ) ) != 0 ) in mbedtls_x509_csr_parse_der()
162 if( csr->version != 0 ) in mbedtls_x509_csr_parse_der()
168 csr->version++; in mbedtls_x509_csr_parse_der()
343 prefix, csr->version ); in mbedtls_x509_csr_info()
A Dpkparse.c708 int ret, version; in pk_parse_key_pkcs1_der() local
742 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_pkcs1_der()
747 if( version != 0 ) in pk_parse_key_pkcs1_der()
866 int version, pubkey_done; in pk_parse_key_sec1_der() local
891 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_sec1_der()
894 if( version != 1 ) in pk_parse_key_sec1_der()
1004 int ret, version; in pk_parse_key_pkcs8_unencrypted_der() local
1036 if( ( ret = mbedtls_asn1_get_int( &p, end, &version ) ) != 0 ) in pk_parse_key_pkcs8_unencrypted_der()
1039 if( version != 0 ) in pk_parse_key_pkcs8_unencrypted_der()
/optee_os/core/drivers/
A Dzynqmp_pm.c149 TEE_Result zynqmp_soc_version(uint32_t *version) in zynqmp_soc_version() argument
153 if (!version) in zynqmp_soc_version()
156 res = zynqmp_sip_call(VERSION_ACCESS_SMC, 0, 0, 0, 0, version); in zynqmp_soc_version()
A Dimx_sc_api.c93 uint8_t version; /* SC RPC version */ member
222 .header.version = SC_RPC_VERSION, in sc_rm_get_partition()
257 .header.version = SC_RPC_VERSION, in sc_pm_set_resource_power_mode()
293 .header.version = SC_RPC_VERSION, in sc_rm_assign_resource()
391 .header.version = SC_RPC_VERSION, in imx_sc_seco_start_rng()
/optee_os/scripts/
A Dtee_bin_parser.py28 version = struct.unpack('<B', data)[0]
29 print("Version: \t0x{:02x}".format(version))
/optee_os/core/arch/arm/plat-amlogic/scripts/
A Daml_bin2img.py15 version = 0x00002710 variable
30 version,
/optee_os/core/lib/libtomcrypt/src/pk/ecc/
A Decc_import_pkcs8.c85 ltc_asn1_list *version, *field, *point, *point_g, *order, *p_cofactor; in ecc_import_pkcs8() local
89 LTC_SET_DER_FLEXI_CHECK(flexi_should, n++, LTC_ASN1_INTEGER, &version); in ecc_import_pkcs8()
132 if (mp_get_int(version->data) != 1) { in ecc_import_pkcs8()
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/
A Dx509_crt.h59 int version; /**< The X.509 version. (1=v1, 2=v2, 3=v3) */ member
184 int version; member
872 void mbedtls_x509write_crt_set_version( mbedtls_x509write_cert *ctx, int version );
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
A Dx509_crt.h59 int version; /**< The X.509 version. (1=v1, 2=v2, 3=v3) */ member
184 int version; member
872 void mbedtls_x509write_crt_set_version( mbedtls_x509write_cert *ctx, int version );
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/
A Dx509_crt.h59 int version; /**< The X.509 version. (1=v1, 2=v2, 3=v3) */ member
184 int version; member
872 void mbedtls_x509write_crt_set_version( mbedtls_x509write_cert *ctx, int version );
/optee_os/out/arm/export-ta_arm64/include/mbedtls/
A Dx509_crt.h59 int version; /**< The X.509 version. (1=v1, 2=v2, 3=v3) */ member
184 int version; member
872 void mbedtls_x509write_crt_set_version( mbedtls_x509write_cert *ctx, int version );
/optee_os/out/arm/export-ta_arm32/include/mbedtls/
A Dx509_crt.h59 int version; /**< The X.509 version. (1=v1, 2=v2, 3=v3) */ member
184 int version; member
872 void mbedtls_x509write_crt_set_version( mbedtls_x509write_cert *ctx, int version );

Completed in 33 milliseconds

1234