/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | sshkdf.c | 39 char type, unsigned char *okey, size_t okey_len); 231 char type, unsigned char *okey, size_t okey_len) in SSHKDF() 262 memcpy(okey, digest, okey_len); in SSHKDF() 267 memcpy(okey, digest, dsize); in SSHKDF() 280 if (!EVP_DigestUpdate(md, okey, cursize)) in SSHKDF() 287 memcpy(okey + cursize, digest, okey_len - cursize); in SSHKDF() 292 memcpy(okey + cursize, digest, dsize); in SSHKDF() 227 SSHKDF(const EVP_MD *evp_md, const unsigned char *key, size_t key_len, const unsigned char *xcghash, size_t xcghash_len, const unsigned char *session_id, size_t session_id_len, char type, unsigned char *okey, size_t okey_len) SSHKDF() argument
|
H A D | krb5kdf.c | 48 unsigned char *okey, size_t okey_len); 358 unsigned char *okey, size_t okey_len) in KRB5KDF() 428 memcpy(okey + osize, cipherblock, cipherlen); in KRB5KDF() 452 ret = fixup_des3_key(okey); in KRB5KDF() 355 KRB5KDF(const EVP_CIPHER *cipher, ENGINE *engine, const unsigned char *key, size_t key_len, const unsigned char *constant, size_t constant_len, unsigned char *okey, size_t okey_len) KRB5KDF() argument
|
/third_party/openssl/providers/implementations/kdfs/ |
H A D | sshkdf.c | 39 char type, unsigned char *okey, size_t okey_len); 231 char type, unsigned char *okey, size_t okey_len) in SSHKDF() 262 memcpy(okey, digest, okey_len); in SSHKDF() 267 memcpy(okey, digest, dsize); in SSHKDF() 280 if (!EVP_DigestUpdate(md, okey, cursize)) in SSHKDF() 287 memcpy(okey + cursize, digest, okey_len - cursize); in SSHKDF() 292 memcpy(okey + cursize, digest, dsize); in SSHKDF() 227 SSHKDF(const EVP_MD *evp_md, const unsigned char *key, size_t key_len, const unsigned char *xcghash, size_t xcghash_len, const unsigned char *session_id, size_t session_id_len, char type, unsigned char *okey, size_t okey_len) SSHKDF() argument
|
H A D | krb5kdf.c | 48 unsigned char *okey, size_t okey_len); 358 unsigned char *okey, size_t okey_len) in KRB5KDF() 428 memcpy(okey + osize, cipherblock, cipherlen); in KRB5KDF() 452 ret = fixup_des3_key(okey); in KRB5KDF() 355 KRB5KDF(const EVP_CIPHER *cipher, ENGINE *engine, const unsigned char *key, size_t key_len, const unsigned char *constant, size_t constant_len, unsigned char *okey, size_t okey_len) KRB5KDF() argument
|
/third_party/python/Modules/ |
H A D | _gdbmmodule.c | 146 datum key,okey; in gdbm_length() 147 okey.dsize=0; in gdbm_length() 148 okey.dptr=NULL; in gdbm_length() 152 key = gdbm_nextkey(dp->di_dbm,okey)) { in gdbm_length() 154 if (okey.dsize) { in gdbm_length() 155 free(okey.dptr); in gdbm_length() 157 okey=key; in gdbm_length()
|
/third_party/python/Objects/ |
H A D | abstract.c | 273 PyObject *okey; in PyObject_DelItemString() local 280 okey = PyUnicode_FromString(key); in PyObject_DelItemString() 281 if (okey == NULL) in PyObject_DelItemString() 283 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString() 284 Py_DECREF(okey); in PyObject_DelItemString() 2344 PyObject *okey, *r; in PyMapping_GetItemString() local 2350 okey = PyUnicode_FromString(key); in PyMapping_GetItemString() 2351 if (okey == NULL) in PyMapping_GetItemString() 2353 r = PyObject_GetItem(o, okey); in PyMapping_GetItemString() 2354 Py_DECREF(okey); in PyMapping_GetItemString() 2361 PyObject *okey; PyMapping_SetItemString() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_winreg.py | 197 access=KEY_ALL_ACCESS) as okey: 198 self.assertTrue(okey.handle != 0)
|
/third_party/mbedtls/library/ |
H A D | ssl_msg.c | 78 * HMAC(msg) is defined as HASH(okey + HASH(ikey + msg)) where + means in mbedtls_ct_hmac() 79 * concatenation, and okey/ikey are the XOR of the key with some fixed bit in mbedtls_ct_hmac() 82 * We'll first compute ikey/okey, then inner_hash = HASH(ikey + msg) by in mbedtls_ct_hmac() 87 * Then we only need to compute HASH(okey + inner_hash) and we're done. in mbedtls_ct_hmac() 156 /* Calculate okey */ in mbedtls_ct_hmac() 164 /* Now compute HASH(okey + inner_hash) */ in mbedtls_ct_hmac() 198 * HMAC(msg) is defined as HASH(okey + HASH(ikey + msg)) where + means in mbedtls_ct_hmac() 199 * concatenation, and okey/ikey are the XOR of the key with some fixed bit in mbedtls_ct_hmac() 206 * Then we only need to compute HASH(okey + inner_hash) and we're done. in mbedtls_ct_hmac() 213 const unsigned char * const okey in mbedtls_ct_hmac() local [all...] |