Home
last modified time | relevance | path

Searched refs:alice (Results 1 – 25 of 34) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-tls-finished.js24 }, common.mustCall((alice) => {
26 alice: alice.getFinished(), property
27 bob: alice.getPeerFinished()
38 alice: bob.getPeerFinished(), property
45 alice: bob.getPeerFinished(), property
51 assert.strictEqual(undefined, msg.before.alice);
54 assert(Buffer.isBuffer(msg.server.alice));
56 assert(Buffer.isBuffer(msg.client.alice));
59 assert(msg.server.alice.length > 0);
61 assert(msg.client.alice.length > 0);
[all …]
Dtest-crypto-dh.js177 const alice = crypto.createDiffieHellmanGroup('modp5'); constant
179 alice.generateKeys();
181 const aSecret = alice.computeSecret(bob.getPublicKey()).toString('hex');
182 const bSecret = bob.computeSecret(alice.getPublicKey()).toString('hex');
/third_party/node/benchmark/crypto/
Dcipher-stream.js23 const alice = crypto.getDiffieHellman('modp5');
26 alice.generateKeys();
30 const alice_secret = alice.computeSecret(bob.getPublicKey(), pubEnc, 'hex');
31 const bob_secret = bob.computeSecret(alice.getPublicKey(), pubEnc, 'hex');
65 function streamWrite(alice, bob, message, encoding, writes) { argument
78 alice.pipe(bob);
81 alice.write(message, encoding);
83 alice.end();
86 function legacyWrite(alice, bob, message, encoding, writes) { argument
90 enc = alice.update(message, encoding);
[all …]
Daes-gcm-throughput.js26 const alice = crypto.createCipheriv(cipher, key, iv);
27 alice.setAAD(associate_data);
28 const enc = alice.update(message);
29 alice.final();
30 const tag = alice.getAuthTag();
/third_party/typescript/tests/baselines/reference/
DspreadContextualTypedBindingPattern.symbols17 declare const alice: Person
18 >alice : Symbol(alice, Decl(spreadContextualTypedBindingPattern.ts, 7, 13))
22 const { naam, age } = {...bob, ...alice}
26 >alice : Symbol(alice, Decl(spreadContextualTypedBindingPattern.ts, 7, 13))
DspreadContextualTypedBindingPattern.types14 declare const alice: Person
15 >alice : Person
18 const { naam, age } = {...bob, ...alice}
21 >{...bob, ...alice} : { naam: string; age: number; }
23 >alice : Person
DspreadContextualTypedBindingPattern.js9 declare const alice: Person
12 const { naam, age } = {...bob, ...alice}
28 var _a = __assign(__assign({}, bob), alice), naam = _a.naam, age = _a.age;
/third_party/boost/libs/serialization/example/
Ddemo_exception.cpp181 Student *alice = new Student(); in init() local
186 school->all_students.push_back(alice); in init()
208 alice->some_courses.push_back(literature); in init()
209 literature->some_students.push_back(alice); in init()
210 alice->some_courses.push_back(history); in init()
211 history->some_students.push_back(alice); in init()
Ddemo_output.txt10 11:2 alice
22 11:47 alice
/third_party/libsoup/tests/
Dntlm-test.c396 gboolean alice = !g_strcmp0 (user, "alice"); in do_ntlm_round() local
398 gboolean alice_via_ntlm = use_ntlm && alice; in do_ntlm_round()
400 gboolean alice_via_basic = !use_ntlm && alice; in do_ntlm_round()
446 alice ? SOUP_STATUS_OK : in do_ntlm_round()
457 !alice, bob_via_ntlm, in do_ntlm_round()
458 !alice, alice_via_basic, in do_ntlm_round()
459 alice ? SOUP_STATUS_NOT_FOUND : in do_ntlm_round()
464 !alice, bob_via_ntlm, in do_ntlm_round()
465 !alice, alice_via_basic, in do_ntlm_round()
466 alice ? SOUP_STATUS_OK : in do_ntlm_round()
[all …]
/third_party/typescript/tests/cases/conformance/types/spread/
DspreadContextualTypedBindingPattern.ts8 declare const alice: Person constant
11 const { naam, age } = {...bob, ...alice}
/third_party/node/deps/npm/node_modules/json-stringify-safe/test/
Dstringify_test.js84 var alice = {name: "Alice"} variable
85 obj.alice1 = alice
86 obj.alice2 = alice
95 var alice = {name: "Alice"} variable
96 var obj = [alice, alice]
/third_party/mindspore/tests/ut/data/mindrecord/testCsv/
Ddata.csv5 86, 10053,alice, 7777,True
/third_party/curl/tests/certs/
Dsrp-verifier-db2 alice:3IIP1g1HDTN6VEUr8DUkMleocoC1cpuFZnmunDaGhMyIsw8LAwCc7ZapWaC66gZSyis4ezSuCqvhsJdwdc.0es2UrH6PB…
/third_party/skia/third_party/externals/tint/test/unittest/reader/spirv/
DSpvModuleScopeVarParserTest_Output_FlattenStruct_LocOnVariable.spvasm11 OpMemberName %Communicators 0 "alice"
DSpvModuleScopeVarParserTest_Input_FlattenStruct_LocOnVariable.spvasm11 OpMemberName %Communicators 0 "alice"
DSpvModuleScopeVarParserTest_FlattenStruct_LocOnMembers.spvasm11 OpMemberName %Communicators 0 "alice"
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Dhr.txt824 dnam{"šalice"}
825 few{"{0} šalice"}
830 dnam{"metričke šalice"}
831 few{"{0} metričke šalice"}
2425 dnam{"šalice"}
/third_party/icu/icu4c/source/data/unit/
Dhr.txt1089 dnam{"šalice"}
1090 few{"{0} šalice"}
1095 dnam{"metričke šalice"}
1096 few{"{0} metričke šalice"}
2845 dnam{"šalice"}
/third_party/skia/third_party/externals/icu/source/data/unit/
Dhr.txt1089 dnam{"šalice"}
1090 few{"{0} šalice"}
1095 dnam{"metričke šalice"}
1096 few{"{0} metričke šalice"}
2845 dnam{"šalice"}
/third_party/node/doc/api/
Dcrypto.md593 const alice = crypto.createDiffieHellman(2048);
594 const aliceKey = alice.generateKeys();
597 const bob = crypto.createDiffieHellman(alice.getPrime(), alice.getGenerator());
601 const aliceSecret = alice.computeSecret(bobKey);
778 const alice = crypto.createECDH('secp521r1');
779 const aliceKey = alice.generateKeys();
786 const aliceSecret = alice.computeSecret(bobKey);
967 const alice = crypto.createECDH('secp256k1');
973 alice.setPrivateKey(
974 crypto.createHash('sha256').update('alice', 'utf8').digest()
[all …]
/third_party/python/Tools/pynche/X/
Drgb.txt34 240 248 255 alice blue
/third_party/gstreamer/gstplugins_good/po/
Dhr.po594 #~ msgstr "Slušalice"
708 #~ msgstr "Slušalice s mikrofonom"
753 #~ msgstr "Slušalice na prednjoj ploči"
/third_party/node/deps/npm/docs/content/using-npm/
Ddisputes.md60 that Yusuf can run npm owner `add alice foo` to add Alice as an owner of the
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_impl_module_var_test.cc4312 OpMemberName %strct 0 "alice" in TEST_F()
4562 OpMemberName %strct 0 "alice" in TEST_F()
4632 OpMemberName %strct 0 "alice" in TEST_F()

12