Home
last modified time | relevance | path

Searched refs:secret (Results 126 – 140 of 140) sorted by path

123456

/plugin/requiz/
H A Dhelper.php33 $secret = PMA_blowfish_encrypt($rand,auth_cookiesalt());
37 $out .= '<input type="hidden" name="plugin__requiz_secret" value="'.hsc($secret).'" />';
/plugin/revealjs/plugin/multiplex/
H A Dindex.js20 if (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;
21 if (createHash(data.secret) === data.socketId) {
22 data.secret = null;
48 var secret = ts.toString() + rand.toString();
49 res.send({secret: secret, socketId: createHash(secret)});
52 var createHash = function(secret) { argument
53 var cipher = crypto.createCipher('blowfish', secret);
H A Dmaster.js14 secret: multiplex.secret, property in post.messageData
/plugin/siteexport/inc/
H A Dhttpproxy.php99 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
100 $this->pass = !empty($this->pass) ? $this->auth_decrypt($this->pass, $secret) : '';
109 private function auth_decrypt($pass, $secret) { argument
113 return auth_decrypt($pass, $secret);
116 return PMA_blowfish_decrypt($pass, $secret);
/plugin/subjectindex/plugins/
H A Dbible_verses.txt16255 My bones were not hidden from youWhen I was made in secret,When I was woven in the lowest parts of …
17116 The glory of God is the keeping of a matter secret, and the glory of kings is the searching through…
23287 that your gifts of mercy may be in secret; then your Father who is looking on in secret will repay …
23289 …er shutting your door, pray to your Father who is in secret; then your Father who looks on in secr…
25462 But there is nothing carefully concealed that will not be revealed, and secret that will not become…
26339 …is brothers had gone up to the festival, then he also went up himself, not openly but as in secret.
28770 Look! I tell YOU a sacred secret: We shall not all fall asleep [in death], but we shall all be chan…
29255 that by way of a revelation the sacred secret was made known to me, just as I wrote previously in b…
29317 for the things that take place in secret by them it is shameful even to relate.
29337 This sacred secret is great. Now I am speaking with respect to Christ and the congregation.
[all …]
/plugin/swarmwebhook/
H A Dadmin.php19 $secret = $this->getConf('hook_secret');
20 if (empty($secret)) {
45 $secret = $this->getConf('hook_secret');
50 $html = str_replace('$secret', hsc($secret), $html);
/plugin/swarmwebhook/lang/en/
H A Difttt_instructions.txt14 "secret": "$secret"
/plugin/tuxquote/
H A Dquotes.txt266 The secret to creativity is knowing how to hide your sources. <BR> -- Albert Einstein
417 The secret of success is honesty and fair dealing. If you can fake those, you've got it made. <BR> …
890 Part of the secret of success in life is to eat what you like and let the food fight it out inside.…
915 The secret of success is to make your vocation your vacation. <BR> -- Mark Twain
916 The secret of getting ahead is getting started. The secret of getting started is breaking your comp…
1362 The secret of staying young is to live honestly, eat slowly, and lie about your age. <BR> -- Lucill…
2044 The secret to success is sincerity. Once you can fake that, you've got it made. <BR> -- Jean Girado…
2552 No one gossips about other people's secret virtues. <BR> -- Bertrand Russell (1872 - 1970)
3367 The secret of success is sincerity... once you can fake that, you've got it made. <BR> -- Glyme's F…
3933 Three may keep a secret, if two of them are dead.
[all …]
/plugin/twofactor/
H A DGoogleAuthenticator.php22 * Create new secret.
34 // Valid secret lengths are 80 to 640 bits
36 throw new \Exception('Bad secret length');
38 $secret = '';
52 $secret .= $validChars[ord($rnd[$i]) & 31];
58 return $secret;
62 * Calculate the code, with given secret and point in time.
64 * @param string $secret
69 public function getCode($secret, $timeSlice = null) argument
75 $secretkey = $this->_base32Decode($secret);
107 getQRCodeGoogleUrl($name, $secret, $title = null, $params = array()) global() argument
131 verifyCode($secret, $code, $discrepancy = 1, $currentTimeSlice = null) global() argument
172 _base32Decode($secret) global() argument
[all...]
H A DProvider.php138 * Create and store a new secret for this provider
140 * @return string the new secret
146 $secret = $ga->createSecret();
148 $this->settings->set('secret', $secret);
149 return $secret;
153 * Get the secret for this provider
159 return $this->settings->get('secret');
170 $secret = $this->settings->get('secret');
[all...]
/plugin/twofactorgoogleauth/
H A Daction.php32 $secret = $this->getSecret();
34 $url = 'otpauth://totp/' . rawurlencode($name) . '?secret=' . $secret;
39 $form->addHTML('<figcaption><code>'.$secret.'</code></figcaption>');
/plugin/twofactoryubiauth/
H A Dhelper.php173 $secret = base64_decode($this->getConf("clientSecret"));
182 $hash = base64_encode(hash_hmac('sha1',$sorted,$secret, true));
/plugin/userhomepage/
H A Dstyle.css10 a.uhp_fa i.fa-user-secret,
/plugin/vbsso/includes/
H A Dapi.php123 $secret = auth_cookiesalt(TRUE); //always sticky
124 … vbsso_auth_setCookie($json[SHAREDAPI_EVENT_FIELD_USERNAME], PMA_blowfish_encrypt('', $secret),
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js45420 var secret = other.redPow(this._priv).fromRed();
45421 var out = new Buffer(secret.toArray());
48096 EDDSA.prototype.sign = function sign(message, secret) {
48098 var key = this.keyFromSecret(secret);
48143 return KeyPair.fromSecret(this, secret);
48207 this._secret = parseBytes(params.secret);
48218 KeyPair.fromSecret = function fromSecret(eddsa, secret) {
48219 if (secret instanceof KeyPair) return secret;
48221 secret: secret
48225 KeyPair.prototype.secret = function secret() {
[all …]

123456