Home
last modified time | relevance | path

Searched refs:outKey (Results 1 – 25 of 65) sorted by relevance

123

/aosp_15_r20/external/tink/go/jwt/
H A Djwk_converter.go435 outKey := &spb.Struct{
438 addStringEntry(outKey, "alg", alg)
439 addStringEntry(outKey, "kty", "RSA")
440 addStringEntry(outKey, "e", base64Encode(pubKey.GetE()))
441 addStringEntry(outKey, "n", base64Encode(pubKey.GetN()))
442 addStringEntry(outKey, "use", "sig")
443 addKeyOPSVerify(outKey)
449 if err := setKeyID(outKey, key, customKID); err != nil {
452 return outKey, nil
470 outKey := &spb.Struct{
[all …]
/aosp_15_r20/external/openthread/tests/unit/
H A Dtest_hkdf_sha256.cpp134 uint8_t outKey[kMaxOuttKey]; in TestHkdfSha256() local
143 memset(outKey, kFillByte, sizeof(outKey)); in TestHkdfSha256()
149 hkdf.Expand(test->mInfo, test->mInfoLength, outKey, test->mOutKeyLength); in TestHkdfSha256()
151 DumpBuffer("\nCalculated Output Key", outKey, test->mOutKeyLength); in TestHkdfSha256()
153 … VerifyOrQuit(memcmp(outKey, test->mOutKey, test->mOutKeyLength) == 0, "HKDF-SHA-256 failed"); in TestHkdfSha256()
155 for (size_t i = test->mOutKeyLength + 1; i < sizeof(outKey); i++) in TestHkdfSha256()
157 VerifyOrQuit(outKey[i] == kFillByte, "HKDF-SHA-256 wrote beyond output key length"); in TestHkdfSha256()
/aosp_15_r20/external/mdnsresponder/mDNSWindows/
H A DSecret.c38 LsaGetSecret( const char * inDomain, char * outDomain, unsigned outDomainSize, char * outKey, unsig… in LsaGetSecret() argument
52 check( outKey ); in LsaGetSecret()
110 err = MakeUTF8StringFromLsaString( outKey, outKeySize, keyLSA ); in LsaGetSecret()
112 require_action( outKey[0] == '$', exit, err = kUnknownErr ); in LsaGetSecret()
113 memcpy( outKey, outKey + 1, strlen( outKey ) ); in LsaGetSecret()
H A DSecret.h30 LsaGetSecret( const char * inDomain, char * outDomain, unsigned outDomainLength, char * outKey, uns…
H A DmDNSWin32.c4751 char outKey[ 256 ]; in SetDomainSecret() local
4759 …if ( LsaGetSecret( domainUTF8, outDomain, sizeof( outDomain ), outKey, sizeof( outKey ), outSecret… in SetDomainSecret()
4767 MakeDomainNameFromDNSNameString( &key, outKey ); in SetDomainSecret()
/aosp_15_r20/external/mdnsresponder/mDNSWindows/ControlPanel/
H A DSharedSecret.cpp82 char outKey[ 256 ]; in BEGIN_MESSAGE_MAP() local
87 …ret( zoneUTF8, outDomain, sizeof( outDomain ) / sizeof( TCHAR ), outKey, sizeof( outKey ) / sizeof… in BEGIN_MESSAGE_MAP()
89 m_key = outKey; in BEGIN_MESSAGE_MAP()
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/linear/
H A DOpenMapRealMatrix.java222 final int outKey = out.computeKey(i, j); in multiply() local
224 out.entries.get(outKey) + value * m.entries.get(rightKey); in multiply()
226 out.entries.remove(outKey); in multiply()
228 out.entries.put(outKey, outValue); in multiply()
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DOpenMapRealMatrix.java208 final int outKey = out.computeKey(i, j); in multiply() local
210 out.entries.get(outKey) + value * m.entries.get(rightKey); in multiply()
212 out.entries.remove(outKey); in multiply()
214 out.entries.put(outKey, outValue); in multiply()
/aosp_15_r20/external/tpm2-tss/src/tss2-esys/
H A Desys_crypto.c334 BYTE * outKey, in iesys_crypto_KDFa() argument
347 BYTE *subKey = outKey; in iesys_crypto_KDFa()
370 outKey[0] &= ((1 << (bitLength % 8)) - 1); in iesys_crypto_KDFa()
373 LOGBLOB_DEBUG(outKey, (bitLength + 7) / 8, "IESYS KDFa key"); in iesys_crypto_KDFa()
H A Desys_crypto.h84 BYTE *outKey,
/aosp_15_r20/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
Dtrie_map.cpp149 int *const outKey) const { in iterateNext()
163 if (outKey) { in iterateNext()
164 *outKey = entry.getKey(); in iterateNext()
Dtrie_map.h317 int *const outKey) const;
/aosp_15_r20/hardware/google/graphics/common/libhwc2.1/libdevice/
DExynosDevice.h278 … uint32_t* __unused outKeyLength, char* __unused outKey, bool* __unused outMandatory);
/aosp_15_r20/external/icu/icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/
H A DCollationTest.java1590 Output<CollationKey> outKey = new Output<>(key);
1591 if (getMergedCollationKey(prevString, outPrevKey) | getMergedCollationKey(s, outKey)) {
1593 key = outKey.value;
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationTest.java1593 Output<CollationKey> outKey = new Output<>(key);
1594 if (getMergedCollationKey(prevString, outPrevKey) | getMergedCollationKey(s, outKey)) {
1596 key = outKey.value;
/aosp_15_r20/hardware/google/graphics/common/libhwc2.1/
DExynosHWC.h179 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
DExynosHWC.cpp1264 uint32_t* outKeyLength, char* outKey, bool* outMandatory) in exynos_GetLayerGenericMetadataKey() argument
1269 … return exynosDevice->getLayerGenericMetadataKey(keyIndex, outKeyLength, outKey, outMandatory); in exynos_GetLayerGenericMetadataKey()
/aosp_15_r20/external/python/cpython2/Mac/Modules/menu/
D_Menumodule.c1534 UInt16 outKey; in MenuObj_GetMenuItemCommandKey() local
1545 &outKey); in MenuObj_GetMenuItemCommandKey()
1548 outKey); in MenuObj_GetMenuItemCommandKey()
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/prebuilts/vndk/v32/arm64/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/prebuilts/vndk/v34/x86_64/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/prebuilts/vndk/v34/arm/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/hardware/libhardware/include/hardware/
Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);
/aosp_15_r20/hardware/libhardware/include_all/hardware/
H A Dhwcomposer2.h3171 uint32_t* outKeyLength, char* outKey, bool* outMandatory);

123