/optee_os/core/lib/libtomcrypt/src/pk/ec25519/ |
A D | ec25519_import_pkcs8.c | 38 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 D | ec25519_export.c | 36 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 D | dh_import.c | 26 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 D | dh_export.c | 27 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.cmd | 1 …version.o := /usr/bin/ccache /home/test/workspace/code/optee_3.16/build/../toolchains/aarch64/bin/…
|
A D | .version.o.d | 1 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.cmd | 1 …version.o := /usr/bin/ccache /home/test/workspace/code/optee_3.16/build/../toolchains/aarch32/bin/…
|
A D | .version.o.d | 1 out/arm/ta_arm32-lib/libmbedtls/mbedtls/library/version.o: \ 2 lib/libmbedtls/mbedtls/library/version.c \
|
/optee_os/core/lib/libfdt/ |
A D | fdt.c | 59 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 D | link.mk | 42 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 D | arm32_gicv3_sysreg.txt | 8 @ GIC architecture version 3.0 and version 4.0
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | x509write_crt.c | 48 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 D | x509_crl.c | 317 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 D | x509_csr.c | 156 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 D | pkparse.c | 708 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 D | zynqmp_pm.c | 149 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 D | imx_sc_api.c | 93 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 D | tee_bin_parser.py | 28 version = struct.unpack('<B', data)[0] 29 print("Version: \t0x{:02x}".format(version))
|
/optee_os/core/arch/arm/plat-amlogic/scripts/ |
A D | aml_bin2img.py | 15 version = 0x00002710 variable 30 version,
|
/optee_os/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_import_pkcs8.c | 85 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 D | x509_crt.h | 59 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 D | x509_crt.h | 59 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 D | x509_crt.h | 59 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 D | x509_crt.h | 59 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 D | x509_crt.h | 59 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 );
|