Searched refs:newKey (Results 1 – 4 of 4) sorted by relevance
| /developtools/hdc/src/common/ |
| D | auth.cpp | 328 RSA *newKey = RSA_new(); in RSAPublicKey2RSA() local 329 if (!newKey) { in RSAPublicKey2RSA() 342 newKey->n = BN_bin2bn(modulusBuffer, sizeof(modulusBuffer), nullptr); in RSAPublicKey2RSA() 343 newKey->e = BN_new(); in RSAPublicKey2RSA() 344 if (!newKey->e || !BN_set_word(newKey->e, keyStruct->exponent) || !newKey->n) { in RSAPublicKey2RSA() 350 …RSA_set0_key(newKey, BN_bin2bn(modulusBuffer, sizeof(modulusBuffer), nullptr), BN_new(), BN_new()); in RSAPublicKey2RSA() 352 newKey->n = BN_bin2bn(modulusBuffer, sizeof(modulusBuffer), nullptr); in RSAPublicKey2RSA() 353 newKey->e = BN_new(); in RSAPublicKey2RSA() 354 if (!newKey->e || !BN_set_word(newKey->e, keyStruct->exponent) || !newKey->n) { in RSAPublicKey2RSA() 360 *key = newKey; in RSAPublicKey2RSA() [all …]
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/common/ |
| D | process_project_config.ts | 40 const newKey: string = key.replace(/^\.\//, ''); constant 41 newEntry[newKey] = projectConfig.entryObj[key].replace('?entry', '');
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/ |
| D | module_mode.ts | 762 let newKey: string = relativeCachePath + '/' + key; 763 if (newKey.endsWith(EXTNAME_ETS)) { 764 newKey = changeFileExtension(newKey, EXTNAME_TS); 766 sourceMap[newKey] = sourceMap[key];
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | utils.ts | 642 …const newKey: string = projectConfig.projectRootPath ? path.relative(projectConfig.projectRootPath… constant 643 allComponentsOrModules.set(newKey, Array.from(appCollection.get(key)));
|