Searched refs:shared_key (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/crypto/ |
D | curve25519.cc | 21 uint8* shared_key) { in ScalarMult() argument 22 curve25519_donna(shared_key, private_key, peer_public_key); in ScalarMult()
|
D | curve25519.h | 35 uint8* shared_key);
|
/external/chromium_org/net/quic/crypto/ |
D | key_exchange.h | 33 std::string* shared_key) const = 0;
|
D | curve25519_key_exchange.h | 36 std::string* shared_key) const OVERRIDE;
|
D | p256_key_exchange.h | 45 std::string* shared_key) const OVERRIDE;
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
D | sctp_usrreq.c | 4635 sctp_sharedkey_t *shared_key; local 4670 shared_key = sctp_alloc_sharedkey(); 4671 if (shared_key == NULL) { 4678 shared_key->key = key; 4679 shared_key->keyid = sca->sca_keynumber; 4680 error = sctp_insert_sharedkey(shared_keys, shared_key); 4707 shared_key = sctp_alloc_sharedkey(); 4708 if (shared_key == NULL) { 4715 shared_key->key = key; 4716 shared_key->keyid = sca->sca_keynumber; [all …]
|
D | sctp_pcb.c | 3811 sctp_sharedkey_t *shared_key, *nshared_key; local 4223 LIST_FOREACH_SAFE(shared_key, &inp->sctp_ep.shared_keys, next, nshared_key) { 4224 LIST_REMOVE(shared_key, next); 4225 sctp_free_sharedkey(shared_key); 5327 sctp_sharedkey_t *shared_key, *nshared_key; local 5856 LIST_FOREACH_SAFE(shared_key, &asoc->shared_keys, next, nshared_key) { 5857 LIST_REMOVE(shared_key, next); 5858 sctp_free_sharedkey(shared_key);
|