Searched refs:idlen (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/crypto/openssh/
H A Dschnorr.h44 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p);
47 const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen,
51 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen,
56 const BIGNUM *g_x, const u_char *id, u_int idlen,
H A Dschnorr.c69 const u_char *id, u_int idlen)
90 buffer_put_string(&b, id, idlen);
120 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
130 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p)
180 id, idlen)) == NULL) {
216 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
223 const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen,
230 x, g_x, id, idlen, &r, &e) != 0)
255 * Signature hash will be salted with 'idlen' bytes from 'id'.
260 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen,
67 schnorr_hash(const BIGNUM *p, const BIGNUM *q, const BIGNUM *g, const EVP_MD *evp_md, const BIGNUM *g_v, const BIGNUM *g_x, const u_char *id, u_int idlen) argument
128 schnorr_sign(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const EVP_MD *evp_md, const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p) argument
222 schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen, u_char **sig, u_int *siglen) argument
259 schnorr_verify(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen, const BIGNUM *r, const BIGNUM *e) argument
360 schnorr_verify_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *g_x, const u_char *id, u_int idlen, const u_char *sig, u_int siglen) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/cms/
H A Dcms.h187 unsigned char *id, size_t idlen);
207 unsigned char *id, size_t idlen,
223 const unsigned char *id, size_t idlen);
321 CMS_ReceiptRequest *CMS_ReceiptRequest_create0(unsigned char *id, int idlen,
H A Dcms_ess.c92 CMS_ReceiptRequest *CMS_ReceiptRequest_create0(unsigned char *id, int idlen, argument
103 ASN1_STRING_set0(rr->signedContentIdentifier, id, idlen);
H A Dcms_env.c444 const unsigned char *id, size_t idlen)
457 tmp_os.length = (int)idlen;
483 unsigned char *id, size_t idlen,
569 ASN1_STRING_set0(kekri->kekid->keyIdentifier, id, idlen);
443 CMS_RecipientInfo_kekri_id_cmp(CMS_RecipientInfo *ri, const unsigned char *id, size_t idlen) argument
481 CMS_add0_recipient_key(CMS_ContentInfo *cms, int nid, unsigned char *key, size_t keylen, unsigned char *id, size_t idlen, ASN1_GENERALIZEDTIME *date, ASN1_OBJECT *otherTypeId, ASN1_TYPE *otherType) argument
H A Dcms_smime.c672 unsigned char *id, size_t idlen)
687 if (!id || (CMS_RecipientInfo_kekri_id_cmp(ri, id, idlen) == 0))
670 CMS_decrypt_set1_key(CMS_ContentInfo *cms, unsigned char *key, size_t keylen, unsigned char *id, size_t idlen) argument
/freebsd-10.0-release/sbin/setkey/
H A Dtest-pfkey.c372 u_int idlen = strlen(str), len; local
374 len = sizeof(m_id) + PFKEY_ALIGN8(idlen);
383 str, idlen);
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clport.c513 nfscl_fillclid(u_int64_t clval, char *uuid, u_int8_t *cp, u_int16_t idlen) argument
520 if (idlen >= sizeof (u_int64_t)) {
523 idlen -= sizeof (u_int64_t);
530 if (uuidlen > 0 && idlen >= uuidlen) {
533 idlen -= uuidlen;
539 while (idlen > 0) {
541 idlen--;
H A Dnfs_clstate.c737 u_int16_t idlen = 0; local
742 idlen = strlen(uuid);
743 if (idlen > 0)
744 idlen += sizeof (u_int64_t);
746 idlen += sizeof (u_int64_t) + 16; /* 16 random bytes */
748 sizeof (struct nfsclclient) + idlen - 1, M_NFSCLCLIENT,
770 clp->nfsc_idlen = idlen;
/freebsd-10.0-release/crypto/openssl/ssl/
H A Dt1_lib.c579 long extlen, idlen, itmp; local
582 idlen = 0;
589 idlen += itmp + 2;
601 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
603 if (extlen + idlen > 0xFFF0)
605 s2n(extlen + idlen + 5, ret);
607 s2n(idlen, ret);
/freebsd-10.0-release/crypto/openssl/apps/
H A Dcms.c1307 int idlen; local
1311 idlen = ASN1_STRING_length(scid);
1313 BIO_dump_indent(out, id, idlen, 4);
/freebsd-10.0-release/contrib/wpa/hostapd/
H A Dconfig_file.c1883 size_t idlen = os_strlen(pos); local
1884 if (idlen & 1) {
1890 bss->eap_fast_a_id = os_malloc(idlen / 2);
1893 idlen / 2)) {
1899 bss->eap_fast_a_id_len = idlen / 2;
/freebsd-10.0-release/contrib/sendmail/src/
H A Dconf.c5343 int idlen; local
5352 idlen = strlen(id) + SyslogPrefixLen;
5381 if ((strlen(newstring) + idlen + 1) < SYSLOG_BUFSIZE)
5437 idlen += 5; /* strlen("[999]"), see below */
5439 (strlen(begin) + idlen) > SYSLOG_BUFSIZE)
5448 end = begin + SYSLOG_BUFSIZE - idlen - SL_SPLIT;
5461 end = begin + SYSLOG_BUFSIZE - idlen - SL_SPLIT;
/freebsd-10.0-release/sys/fs/nfsserver/
H A Dnfs_nfsdserv.c3287 int error = 0, idlen; local
3305 idlen = i;
3316 clp->lc_idlen = idlen;
3317 error = nfsrv_mtostr(nd, clp->lc_id, idlen);
3332 clp->lc_name = &clp->lc_id[idlen];
/freebsd-10.0-release/sys/net/
H A Dif_spppsubr.c4680 u_char idlen, pwdlen; local
4684 idlen = sppp_strnlen(sp->myauth.name, AUTHNAMELEN);
4687 sizeof idlen, (const char *)&idlen,
4688 (size_t)idlen, sp->myauth.name,
/freebsd-10.0-release/sbin/ifconfig/
H A Difieee80211.c3180 int len, ssidmax, idlen; local
3208 idlen = sr->isr_meshid_len;
3211 idlen = sr->isr_ssid_len;
3215 , copy_essid(ssid, ssidmax, idp, idlen)

Completed in 223 milliseconds