HomeSort by relevance Sort by last modified time
    Searched defs:sigbuf (Results 1 - 5 of 5) sorted by null

  /external/openssh/
ssh-ecdsa.c 122 struct sshbuf *b = NULL, *sigbuf = NULL; local
137 sshbuf_froms(b, &sigbuf) != 0) {
155 if (sshbuf_get_bignum2(sigbuf, sig->r) != 0 ||
156 sshbuf_get_bignum2(sigbuf, sig->s) != 0) {
160 if (sshbuf_len(sigbuf) != 0) {
182 if (sigbuf != NULL)
183 sshbuf_free(sigbuf);
serverloop.c 1158 struct sshbuf *sigbuf = NULL; local
1165 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
    [all...]
monitor.c 693 struct sshbuf *sigbuf; local
726 if ((sigbuf = sshbuf_new()) == NULL)
728 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
729 (r = sshbuf_put_string(sigbuf, session_id2,
731 (r = sshkey_puts(key, sigbuf)) != 0)
734 if (datlen != sshbuf_len(sigbuf) ||
735 memcmp(p, sshbuf_ptr(sigbuf), sshbuf_len(sigbuf)) != 0)
737 __func__, datlen, sshbuf_len(sigbuf));
738 sshbuf_free(sigbuf);
    [all...]
  /external/valgrind/none/tests/
async-sigs.c 42 char sigbuf[20]; local
44 sprintf(sigbuf, "-%d", sig);
46 execl("/bin/kill", "kill", sigbuf, pidbuf, NULL);
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 1808 const unsigned char* sigbuf = reinterpret_cast<const unsigned char*>(signatureBytes.get()); local
    [all...]

Completed in 202 milliseconds