Searched refs:sigblob (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/OpenSSH-189/openssh/
H A Dssh-dss.c57 u_char digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN]; local
85 memset(sigblob, 0, SIGBLOB_LEN);
86 BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
87 BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
95 memcpy(*sigp, sigblob, SIGBLOB_LEN);
101 buffer_put_string(&b, sigblob, SIGBLOB_LEN);
120 u_char digest[EVP_MAX_MD_SIZE], *sigblob; local
133 sigblob = xmalloc(signaturelen);
134 memcpy(sigblob, signature, signaturelen);
149 sigblob
[all...]
H A Dssh-rsa.c119 u_char digest[EVP_MAX_MD_SIZE], *sigblob; local
143 sigblob = buffer_get_string(&b, &len);
148 xfree(sigblob);
155 xfree(sigblob);
161 sigblob = xrealloc(sigblob, 1, modlen);
162 memmove(sigblob + diff, sigblob, len);
163 memset(sigblob, 0, diff);
169 xfree(sigblob);
[all...]
H A Dssh-ecdsa.c102 u_char digest[EVP_MAX_MD_SIZE], *sigblob; local
126 sigblob = buffer_get_string(&b, &len);
131 xfree(sigblob);
143 buffer_append(&bb, sigblob, len);
147 fatal("%s: remaining bytes in inner sigblob", __func__);
151 memset(sigblob, 0, len);
152 xfree(sigblob);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/gke/
H A Dgkunpack.cpp8 #include <security_codesigning/sigblob.h>
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-rsa-cc.c416 unsigned char *sigblob, unsigned int len, const RSA *rsa)
427 (nid == NID_md5) ? kCCDigestMD5 : kCCDigestSHA1, 0, (const void *)sigblob,
415 cc_rsa_verify(int nid, const unsigned char *digest, unsigned int dlen, unsigned char *sigblob, unsigned int len, const RSA *rsa) argument

Completed in 178 milliseconds