Home
last modified time | relevance | path

Searched refs:keyparts (Results 1 – 25 of 591) sorted by relevance

12345678910>>...24

/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/imap/
H A Dhttp_applepush.c103 strarray_t *keyparts = NULL; in meth_get_applepush() local
118 keyparts = strarray_split(key, "/", 0); in meth_get_applepush()
119 if (strarray_size(keyparts) != 2) in meth_get_applepush()
121 mailbox_userid = strarray_nth(keyparts, 0); in meth_get_applepush()
122 mailbox_uniqueid = strarray_nth(keyparts, 1); in meth_get_applepush()
177 if (keyparts) strarray_free(keyparts); in meth_get_applepush()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Dhttp_applepush.c105 strarray_t *keyparts = NULL; in meth_get_applepush() local
120 keyparts = strarray_split(key, "/", 0); in meth_get_applepush()
121 if (strarray_size(keyparts) != 2) in meth_get_applepush()
123 mailbox_userid = strarray_nth(keyparts, 0); in meth_get_applepush()
124 mailbox_uniqueid = strarray_nth(keyparts, 1); in meth_get_applepush()
180 if (keyparts) strarray_free(keyparts); in meth_get_applepush()
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/imap/
H A Dhttp_applepush.c105 strarray_t *keyparts = NULL; in meth_get_applepush() local
120 keyparts = strarray_split(key, "/", 0); in meth_get_applepush()
121 if (strarray_size(keyparts) != 2) in meth_get_applepush()
123 mailbox_userid = strarray_nth(keyparts, 0); in meth_get_applepush()
124 mailbox_uniqueid = strarray_nth(keyparts, 1); in meth_get_applepush()
180 if (keyparts) strarray_free(keyparts); in meth_get_applepush()
/dports/deskutils/egroupware/egroupware/vendor/phpmailer/phpmailer/examples/
H A DDKIM_gen_keys.phps72 $keyparts = str_split($publickey, 253); //Becomes 255 when quotes are included variable
74 foreach ($keyparts as $keypart) {
/dports/security/py-pycrypto/pycrypto-2.6.1/lib/Crypto/PublicKey/
H A DRSA.py351 keyparts = [ 'ssh-rsa', eb, nb ]
352 keystring = ''.join([ struct.pack(">I",len(kp))+kp for kp in keyparts])
670 keyparts = []
673 keyparts.append(keystring[4:4+l])
675 e = bytes_to_long(keyparts[1])
676 n = bytes_to_long(keyparts[2])
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/Crypto/PublicKey/
H A DRSA.py351 keyparts = [ 'ssh-rsa', eb, nb ]
352 keystring = ''.join([ struct.pack(">I",len(kp))+kp for kp in keyparts])
670 keyparts = []
673 keyparts.append(keystring[4:4+l])
675 e = bytes_to_long(keyparts[1])
676 n = bytes_to_long(keyparts[2])
/dports/security/py-pycryptodome/pycryptodome-3.10.1/lib/Crypto/PublicKey/
H A DDSA.py285 keyparts = [b'ssh-dss'] + tup2
287 [struct.pack(">I", len(kp)) + kp for kp in keyparts]
658 keyparts = []
661 keyparts.append(keystring[4:4 + length])
663 if keyparts[0] == b"ssh-dss":
664 tup = [Integer.from_bytes(keyparts[x]) for x in (4, 3, 1, 2)]
H A DRSA.py316 keyparts = [b'ssh-rsa', e_bytes, n_bytes]
317 keystring = b''.join([struct.pack(">I", len(kp)) + kp for kp in keyparts])
775 keyparts = []
778 keyparts.append(keystring[4:4 + length])
780 e = Integer.from_bytes(keyparts[1])
781 n = Integer.from_bytes(keyparts[2])
/dports/security/py-pycryptodomex/pycryptodome-3.10.1/lib/Crypto/PublicKey/
H A DDSA.py285 keyparts = [b'ssh-dss'] + tup2
287 [struct.pack(">I", len(kp)) + kp for kp in keyparts]
658 keyparts = []
661 keyparts.append(keystring[4:4 + length])
663 if keyparts[0] == b"ssh-dss":
664 tup = [Integer.from_bytes(keyparts[x]) for x in (4, 3, 1, 2)]
H A DRSA.py316 keyparts = [b'ssh-rsa', e_bytes, n_bytes]
317 keystring = b''.join([struct.pack(">I", len(kp)) + kp for kp in keyparts])
775 keyparts = []
778 keyparts.append(keystring[4:4 + length])
780 e = Integer.from_bytes(keyparts[1])
781 n = Integer.from_bytes(keyparts[2])
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/network/ios/
H A Dios_user.py257 keyparts = sshkey.split(' ')
258 keyparts[1] = hashlib.md5(base64.b64decode(keyparts[1])).hexdigest().upper()
259 return ' '.join(keyparts)
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/cisco/ios/plugins/modules/
H A Dios_user.py346 keyparts = sshkey.split(" ")
347 keyparts[1] = (
348 hashlib.md5(base64.b64decode(keyparts[1])).hexdigest().upper()
350 return " ".join(keyparts)
/dports/www/bolt/bolt-2.2.24/src/
H A DYamlUpdater.php64 $keyparts = explode('/', $key);
65 while ($key = array_shift($keyparts)) {
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/systems/base/
H A Dsound_system.cc173 std::vector<std::string> keyparts = koeonoff->GetKeyParts(); in SoundSystem() local
174 int usekoe_id = std::stoi(keyparts.at(1)); in SoundSystem()
178 const std::string& unprocessed_koeids = keyparts.at(2); in SoundSystem()
194 int onoff = (keyparts.at(3) == "ON") ? 1 : 0; in SoundSystem()
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/libreallive/
H A Dgameexe.cc359 std::vector<std::string> keyparts; in GetKeyParts() local
360 boost::split(keyparts, key_, boost::is_any_of(".")); in GetKeyParts()
361 return keyparts; in GetKeyParts()
/dports/databases/percona57-server/percona-server-5.7.36-39/sql/
H A Dsql_select.cc1177 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1193 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1196 assert(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1198 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1199 keyparts++; in calc_length_and_keyparts()
1211 assert(keyparts > 0); in calc_length_and_keyparts()
1213 *keyparts_out= keyparts; in calc_length_and_keyparts()
1251 uint keyparts, length; in create_ref_for_key() local
1264 keyparts=1; in create_ref_for_key()
1271 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/sql/
H A Dsql_select.cc1175 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1191 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1194 assert(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1196 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1197 keyparts++; in calc_length_and_keyparts()
1209 assert(keyparts > 0); in calc_length_and_keyparts()
1211 *keyparts_out= keyparts; in calc_length_and_keyparts()
1249 uint keyparts, length; in create_ref_for_key() local
1262 keyparts=1; in create_ref_for_key()
1269 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/sql/
H A Dsql_select.cc1177 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1193 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1196 assert(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1198 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1199 keyparts++; in calc_length_and_keyparts()
1211 assert(keyparts > 0); in calc_length_and_keyparts()
1213 *keyparts_out= keyparts; in calc_length_and_keyparts()
1251 uint keyparts, length; in create_ref_for_key() local
1264 keyparts=1; in create_ref_for_key()
1271 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/sql/
H A Dsql_select.cc1177 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1193 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1196 assert(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1198 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1199 keyparts++; in calc_length_and_keyparts()
1211 assert(keyparts > 0); in calc_length_and_keyparts()
1213 *keyparts_out= keyparts; in calc_length_and_keyparts()
1251 uint keyparts, length; in create_ref_for_key() local
1264 keyparts=1; in create_ref_for_key()
1271 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/sql/
H A Dsql_select.cc1175 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1191 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1194 DBUG_ASSERT(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1196 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1197 keyparts++; in calc_length_and_keyparts()
1209 DBUG_ASSERT(keyparts > 0); in calc_length_and_keyparts()
1211 *keyparts_out= keyparts; in calc_length_and_keyparts()
1249 uint keyparts, length; in create_ref_for_key() local
1262 keyparts=1; in create_ref_for_key()
1269 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/sql/
H A Dsql_select.cc1175 uint keyparts= 0, length= 0; in calc_length_and_keyparts() local
1191 keyparts == keyuse->keypart && in calc_length_and_keyparts()
1194 assert(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1196 chosen_keyuses[keyparts]= keyuse; in calc_length_and_keyparts()
1197 keyparts++; in calc_length_and_keyparts()
1209 assert(keyparts > 0); in calc_length_and_keyparts()
1211 *keyparts_out= keyparts; in calc_length_and_keyparts()
1249 uint keyparts, length; in create_ref_for_key() local
1262 keyparts=1; in create_ref_for_key()
1269 j->ref().key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dsql_select.cc1947 uint keyparts = 0, length = 0; in calc_length_and_keyparts() local
1963 DBUG_ASSERT(keyparts <= MAX_REF_PARTS); in calc_length_and_keyparts()
1964 if (chosen_keyuses) chosen_keyuses[keyparts] = keyuse; in calc_length_and_keyparts()
1965 keyparts++; in calc_length_and_keyparts()
1976 DBUG_ASSERT(keyparts > 0); in calc_length_and_keyparts()
1978 *keyparts_out = keyparts; in calc_length_and_keyparts()
2014 uint keyparts, length; in create_ref_for_key() local
2026 keyparts = 1; in create_ref_for_key()
2032 j->ref().key_parts = keyparts; in create_ref_for_key()
2040 (bool **)thd->alloc(sizeof(uint *) * keyparts))) { in create_ref_for_key()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/sql/
H A Dsql_select.cc1620 uint keyparts, length; in create_ref_for_key() local
1632 keyparts=1; in create_ref_for_key()
1637 keyparts=length=0; in create_ref_for_key()
1652 keyparts == keyuse->keypart && in create_ref_for_key()
1655 DBUG_ASSERT(keyparts <= MAX_REF_PARTS); in create_ref_for_key()
1656 chosen_keyuses[keyparts]= keyuse; in create_ref_for_key()
1657 keyparts++; in create_ref_for_key()
1663 DBUG_ASSERT(length > 0 && keyparts != 0); in create_ref_for_key()
1666 DBUG_ASSERT(keyparts > 0); in create_ref_for_key()
1669 j->ref.key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/sql/
H A Dsql_select.cc1620 uint keyparts, length; in create_ref_for_key() local
1632 keyparts=1; in create_ref_for_key()
1637 keyparts=length=0; in create_ref_for_key()
1652 keyparts == keyuse->keypart && in create_ref_for_key()
1655 DBUG_ASSERT(keyparts <= MAX_REF_PARTS); in create_ref_for_key()
1656 chosen_keyuses[keyparts]= keyuse; in create_ref_for_key()
1657 keyparts++; in create_ref_for_key()
1663 DBUG_ASSERT(length > 0 && keyparts != 0); in create_ref_for_key()
1666 DBUG_ASSERT(keyparts > 0); in create_ref_for_key()
1669 j->ref.key_parts=keyparts; in create_ref_for_key()
[all …]
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/sql/
H A Dsql_select.cc1619 uint keyparts, length; in create_ref_for_key() local
1631 keyparts=1; in create_ref_for_key()
1636 keyparts=length=0; in create_ref_for_key()
1651 keyparts == keyuse->keypart && in create_ref_for_key()
1654 DBUG_ASSERT(keyparts <= MAX_REF_PARTS); in create_ref_for_key()
1655 chosen_keyuses[keyparts]= keyuse; in create_ref_for_key()
1656 keyparts++; in create_ref_for_key()
1662 DBUG_ASSERT(length > 0 && keyparts != 0); in create_ref_for_key()
1665 DBUG_ASSERT(keyparts > 0); in create_ref_for_key()
1668 j->ref.key_parts=keyparts; in create_ref_for_key()
[all …]

12345678910>>...24