Home
last modified time | relevance | path

Searched refs:G (Results 1 – 25 of 31) sorted by relevance

12

/trusted-firmware-m-3.6.0/platform/ext/target/stm/common/hal/accelerator/
Decp_curves_alt.c622 ecp_mpi_load( &grp->G.MBEDTLS_PRIVATE(X), gx, gxlen ); in ecp_group_load()
623 ecp_mpi_load( &grp->G.MBEDTLS_PRIVATE(Y), gy, gylen ); in ecp_group_load()
624 ecp_mpi_set1( &grp->G.MBEDTLS_PRIVATE(Z) ); in ecp_group_load()
665 mbedtls_mpi_write_binary(&grp->G.MBEDTLS_PRIVATE(X), grp->st_gx, grp->st_modulus_size); in ecp_group_load()
669 mbedtls_mpi_write_binary(&grp->G.MBEDTLS_PRIVATE(Y), grp->st_gy, grp->st_modulus_size); in ecp_group_load()
724 #define LOAD_GROUP_A( G ) ecp_group_load( grp, \ argument
725 G ## _p, sizeof( G ## _p ), \
726 G ## _a, sizeof( G ## _a ), \
727 G ## _b, sizeof( G ## _b ), \
728 G ## _gx, sizeof( G ## _gx ), \
[all …]
Decp_alt.h98 mbedtls_ecp_point G; /*!< The generator of the subgroup used. */ member
Decdsa_alt.c77 if( ! mbedtls_ecdsa_can_do( grp->id ) || grp->G.MBEDTLS_PRIVATE(Y).MBEDTLS_PRIVATE(p) == NULL ) in mbedtls_ecdsa_sign()
217 if( grp->G.MBEDTLS_PRIVATE(Y).MBEDTLS_PRIVATE(p) == NULL ) in mbedtls_ecdsa_verify()
Decp_alt.c506 if( grp->G.MBEDTLS_PRIVATE(X).MBEDTLS_PRIVATE(p) == NULL ) in mbedtls_ecp_get_type()
509 if( grp->G.MBEDTLS_PRIVATE(Y).MBEDTLS_PRIVATE(p) == NULL ) in mbedtls_ecp_get_type()
541 mbedtls_ecp_point_init( &grp->G ); in mbedtls_ecp_group_init()
607 mbedtls_ecp_point_free( &grp->G ); in mbedtls_ecp_group_free()
2239 const mbedtls_ecp_point *G,
2247 ECP_VALIDATE_RET( G != NULL );
2252 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, Q, d, G, f_rng, p_rng ) );
2271 return( mbedtls_ecp_gen_keypair_base( grp, &grp->G, d, Q, f_rng, p_rng ) );
2427 … mbedtls_ecp_mul( &grp, &Q, &prv->MBEDTLS_PRIVATE(d), &prv->MBEDTLS_PRIVATE(grp).G, NULL, NULL ) );
2485 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &P, &m, &grp.G, NULL, NULL ) );
[all …]
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/
Dcc_ecp_internal.c333 … const mbedtls_ecp_point *G, /* can be NULL in order to use the curve generator*/ in ecp_mont_gen_keypair_base() argument
353 if (G != NULL) /* Base point was supplied by application*/ in ecp_mont_gen_keypair_base()
356 ret = ecc_conv_mpi_to_scalar(&G->MBEDTLS_PRIVATE(X), px, &pxSize); in ecp_mont_gen_keypair_base()
374 if (G != NULL) in ecp_mont_gen_keypair_base()
452 … const mbedtls_ecp_point *G, /* can be NULL in order to use the curve generator*/ in ecp_wrst_gen_keypair_base() argument
521 if (G != NULL) /* Base point was supplied by the application*/ in ecp_wrst_gen_keypair_base()
523 …rc = CC_EcpkiKeyPairGenerateBase(pRndContext, pDomain, G->MBEDTLS_PRIVATE(X).MBEDTLS_PRIVATE(p), G in ecp_wrst_gen_keypair_base()
565 const mbedtls_ecp_point *G, in cc_ecp_gen_keypair_base() argument
572 if (NULL == grp || NULL == Q || NULL == d || NULL == G || f_rng == NULL || p_rng == NULL) in cc_ecp_gen_keypair_base()
581 return ecp_mont_gen_keypair_base(G, d, Q, f_rng, p_rng); in cc_ecp_gen_keypair_base()
[all …]
Decp_common.h41 if (grp->G.MBEDTLS_PRIVATE(X).MBEDTLS_PRIVATE(p) == NULL) in ecp_get_type()
44 if (grp->G.MBEDTLS_PRIVATE(Y).MBEDTLS_PRIVATE(p) == NULL) in ecp_get_type()
Ddhm_alt.c231 ( ret = dhm_read_bignum( &ctx->G, p, end ) ) != 0 || in mbedtls_dhm_read_params()
289 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod_hw( &ctx->GX, &ctx->G, &ctx->X, in mbedtls_dhm_make_params()
303 n2 = mbedtls_mpi_size( &ctx->G ); in mbedtls_dhm_make_params()
308 DHM_MPI_EXPORT( &ctx->G , n2 ); in mbedtls_dhm_make_params()
328 const mbedtls_mpi *G ) in mbedtls_dhm_set_group() argument
332 if( ctx == NULL || P == NULL || G == NULL ) in mbedtls_dhm_set_group()
336 ( ret = mbedtls_mpi_copy( &ctx->G, G ) ) != 0 ) in mbedtls_dhm_set_group()
395 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod_hw( &ctx->GX, &ctx->G, &ctx->X, in mbedtls_dhm_make_public()
536 mbedtls_mpi_free( &ctx->GX ); mbedtls_mpi_free( &ctx->X ); mbedtls_mpi_free( &ctx->G ); in mbedtls_dhm_free()
603 ( ret = mbedtls_asn1_get_mpi( &p, end, &dhm->G ) ) != 0 ) in mbedtls_dhm_parse_dhm()
Decdh_alt.c24 return( cc_ecp_gen_keypair_base( grp, &grp->G, d, Q, f_rng, p_rng ) ); in cc_ecp_gen_keypair()
/trusted-firmware-m-3.6.0/docs/platform/nuvoton/m2351/
DREADME.rst13 -G"Unix Makefiles" \
20 -G"Unix Makefiles" \
/trusted-firmware-m-3.6.0/docs/platform/nuvoton/m2354/
DREADME.rst13 -G"Unix Makefiles" \
20 -G"Unix Makefiles" \
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/shared/include/mbedtls/
Dcc_ecc_internal.h17 const mbedtls_ecp_point *G,
Ddhm_alt.h43 mbedtls_mpi G; /*!< The generator. */ member
/trusted-firmware-m-3.6.0/docs/platform/stm/stm32h573i_dk/
Dreadme.rst15 ``> cmake .. -DTFM_PLATFORM=stm/stm32h573i_dk -DTFM_TOOLCHAIN_FILE=../toolchain_GNUARM.cmake -G"Uni…
/trusted-firmware-m-3.6.0/docs/platform/stm/stm32l562e_dk/
Dreadme.rst14 ``> cmake .. -DTFM_PLATFORM=stm/stm32l562e_dk -DTFM_TOOLCHAIN_FILE=../toolchain_GNUARM.cmake -G"Uni…
/trusted-firmware-m-3.6.0/docs/platform/stm/b_u585i_iot02a/
Dreadme.rst15 ``> cmake .. -DTFM_PLATFORM=stm/b_u585i_iot02a -DTFM_TOOLCHAIN_FILE=../toolchain_GNUARM.cmake -G"Un…
/trusted-firmware-m-3.6.0/docs/platform/stm/nucleo_l552ze_q/
Dreadme.rst15 ``> cmake .. -DTFM_PLATFORM=stm/nucleo_l552ze_q -DTFM_TOOLCHAIN_FILE=../toolchain_GNUARM.cmake -G"U…
/trusted-firmware-m-3.6.0/platform/ext/target/cypress/psoc64/libs/core-lib/docs/html/
Djquery.js96G=new x(O);h();this.each(function M(){var R=k(this),Q=R.data(y),P=R.data(o),T=R.data(l),S;if(R.dat… function
115G=this;if(!K.dataSM("scroll-arrows")){K.dataSM("scroll-arrows",a([a('<span class="scroll-up"><span…
/trusted-firmware-m-3.6.0/config/
Dpre_config.cmake10 Message(FATAL_ERROR "Unsupported generator ${CMAKE_GENERATOR}. Hint: Try -G\"Unix Makefiles\"")
/trusted-firmware-m-3.6.0/platform/ext/target/nuvoton/m2351/device/source/iar/
Dm2351_ns.icf25 define memory mem with size = 4G;
Dm2351_bl2.icf25 define memory mem with size = 4G;
/trusted-firmware-m-3.6.0/platform/ext/target/nuvoton/m2354/device/source/iar/
Dm2354_ns.icf25 define memory mem with size = 4G;
Dm2354_bl2.icf25 define memory mem with size = 4G;
/trusted-firmware-m-3.6.0/docs/building/
Ddocumentation_generation.rst103 cmake -S docs -B build_docs -G"Unix Makefiles"
127 cmake -S docs -B build_docs -G"Unix Makefiles"
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/host/src/tests/integration_cc3x/runtime_integration_test/tests/
Drun_integration_dhm.c93 RUNIT_ASSERT(mbedtls_mpi_read_string(&pCtxSrv->G, radix_G, input_G) == 0); in runIt_dhm()
/trusted-firmware-m-3.6.0/docs/platform/nxp/lpcxpresso55s69/
DREADME.rst19 …TFM_TOOLCHAIN_FILE=toolchain_GNUARM.cmake -DTFM_PROFILE=profile_medium -DBL2=OFF -G"Unix Makefiles"
32 …DTFM_TOOLCHAIN_FILE=toolchain_GNUARM.cmake -DTFM_PROFILE=profile_medium -DBL2=ON -G"Unix Makefiles"
45 …ain_GNUARM.cmake -DTFM_PROFILE=profile_medium -DBL2=OFF -DTEST_S=ON -DTEST_NS=ON -G"Unix Makefiles"

12