/third_party/node/deps/npm/test/lib/utils/ |
D | otplease.js | 5 const setupOtplease = async (t, { otp = {}, ...rest }, fn) => { argument 7 otp: async () => '1234', 23 return await otplease(npm, otp, fn) 32 const fn = ({ otp }) => { field 33 if (otp) { 61 otp: { some: 'prop' }, property 68 t.strictSame(result, { some: 'prop', otp: '1234' }) property 72 const fn = ({ otp }) => { field 73 if (otp) { 118 t.strictSame(result, { otp: '1234' }) property
|
D | read-user-info.js | 51 const result = await readUserInfo.otp()
|
/third_party/node/deps/npm/lib/utils/ |
D | read-user-info.js | 5 exports.otp = readOTP 24 function readOTP (msg = otpPrompt, otp, isRetry) { argument 25 if (isRetry && otp && /^[\d ]+$|^[A-Fa-f0-9]{64,64}$/.test(otp)) { 26 return otp.replace(/\s+/g, '') 29 return readWithProgress({ prompt: msg, default: otp || '' })
|
D | otplease.js | 23 const otp = await webAuth(openerPromise, err.body.authUrl, err.body.doneUrl, opts) 24 return await fn({ ...opts, otp }) field 29 const otp = await readUserInfo.otp('This operation requires a one-time password.\nEnter OTP:') 30 return await fn({ ...opts, otp }) field
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
D | eap_otp.c | 35 int otp; in eap_otp_process() local 47 otp = 1; in eap_otp_process() 50 otp = 0; in eap_otp_process() 74 if (otp) { in eap_otp_process()
|
D | eap_gtc.c | 52 int otp; in eap_gtc_process() local 79 otp = 1; in eap_gtc_process() 82 otp = 0; in eap_gtc_process() 118 if (otp) { in eap_gtc_process()
|
D | eap_config.h | 536 u8 *otp; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
D | eap_otp.c | 35 int otp; in eap_otp_process() local 47 otp = 1; in eap_otp_process() 50 otp = 0; in eap_otp_process() 74 if (otp) { in eap_otp_process()
|
D | eap_gtc.c | 52 int otp; in eap_gtc_process() local 79 otp = 1; in eap_gtc_process() 82 otp = 0; in eap_gtc_process() 118 if (otp) { in eap_gtc_process()
|
D | eap_config.h | 632 u8 *otp; member
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/ |
D | index.js | 146 let otp 149 otp = await opts.otpPrompt() 154 if (!otp) { 157 return regFetch(uri, { ...opts, otp }) field 240 if (opts.otp) { 241 headers['npm-otp'] = opts.otp
|
/third_party/node/deps/npm/lib/commands/ |
D | profile.js | 321 if (!conf.otp) { 322 conf.otp = await readUserInfo.otp( 356 await readUserInfo.otp('And an OTP code from your authenticator: ') 387 if (!conf.otp) { 389 conf.otp = await readUserInfo.otp(msg)
|
D | token.js | 184 if (conf.otp) { 185 conf.auth.otp = conf.otp
|
/third_party/node/deps/npm/test/lib/commands/ |
D | profile.js | 21 async otp () {}, method 629 async otp (label) { method 730 async otp () { method 744 config: { otp: '1234' }, property 779 async otp (label) { method 787 config: { otp: '1234' }, property 818 async otp () { method 826 config: { otp: '123456' }, property 862 async otp () { method 905 async otp () { method [all …]
|
/third_party/node/deps/npm/docs/content/commands/ |
D | npm-team.md | 10 npm team create <scope:team> [--otp <otpcode>] 11 npm team destroy <scope:team> [--otp <otpcode>] 12 npm team add <scope:team> <user> [--otp <otpcode>] 13 npm team rm <scope:team> <user> [--otp <otpcode>] 30 you can provide a code from your authenticator with `[--otp <otpcode>]`. 114 #### `otp`
|
D | npm-owner.md | 34 flow when changing ownership or include an otp on the command line with `--otp`. 47 #### `otp`
|
D | npm-token.md | 51 otp. 109 #### `otp`
|
D | npm-access.md | 70 …bled then you'll be prompted to provide a second factor, or may use the `--otp=...` option to spec… 95 #### `otp`
|
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/ |
D | poly1305-x86_64.pl | 3820 my ($out,$inp,$otp,$len)=$win64 ? ("%rcx","%rdx","%r8", "%r9") : # Win64 order 3828 sub $otp,$inp 3829 sub $otp,$out 3835 movdqu ($inp,$otp),%xmm0 3836 pxor ($otp),%xmm0 3837 movdqu %xmm0,($out,$otp) 3838 movdqa %xmm0,($otp) 3839 lea 16($otp),$otp 3851 mov ($inp,$otp),%al 3852 xor ($otp),%al [all …]
|
/third_party/openssl/crypto/poly1305/asm/ |
D | poly1305-x86_64.pl | 3820 my ($out,$inp,$otp,$len)=$win64 ? ("%rcx","%rdx","%r8", "%r9") : # Win64 order 3828 sub $otp,$inp 3829 sub $otp,$out 3835 movdqu ($inp,$otp),%xmm0 3836 pxor ($otp),%xmm0 3837 movdqu %xmm0,($out,$otp) 3838 movdqa %xmm0,($otp) 3839 lea 16($otp),$otp 3851 mov ($inp,$otp),%al 3852 xor ($otp),%al [all …]
|
/third_party/node/deps/npm/node_modules/libnpmhook/ |
D | README.md | 52 …otp` - certain operations will require an OTP token to be passed in. If a `libnpmhook` command fai… 77 otp: '694207' 144 otp: '694207' 166 otp: '694207' 192 otp: '694207'
|
/third_party/node/deps/npm/tap-snapshots/test/lib/ |
D | docs.js.test.cjs | 254 What authentication strategy to use with \`login\`. Note that if an \`otp\` 1088 #### \`otp\` 2108 "otp", 2246 "otp", 2398 "otp": null, 2508 [--json] [--otp <otp>] [--registry <registry>] 2525 #### \`otp\` 2788 [--registry <registry>] [--otp <otp>] 2799 #### \`otp\` 3145 [--registry <registry>] [--otp <otp>] [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/ |
D | wpa_cli.sgml | 83 <emphasis>otp</emphasis> commands. <id> needs to be copied from 85 <emphasis>otp</emphasis> commands can be used regardless of whether 89 with <emphasis>otp</emphasis> are used only once and then forgotten, 105 > otp 2 9876 308 <term>otp <network id> <password></term>
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/ |
D | wpa_cli.sgml | 79 <emphasis>otp</emphasis> commands. <id> needs to be copied from 81 <emphasis>otp</emphasis> commands can be used regardless of whether 85 with <emphasis>otp</emphasis> are used only once and then forgotten, 101 > otp 2 9876 304 <term>otp <network id> <password></term>
|
/third_party/node/deps/npm/node_modules/npm-profile/lib/ |
D | index.js | 193 const { otp } = opts 201 otp, property
|