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

12

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dschnorr.h45 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p);
48 const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen,
52 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen,
57 const BIGNUM *g_x, const u_char *id, u_int idlen,
H A Dschnorr.c65 const u_char *id, u_int idlen)
86 buffer_put_string(&b, id, idlen);
116 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
126 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p)
176 id, idlen)) == NULL) {
212 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
219 const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen,
226 x, g_x, id, idlen, &r, &e) != 0)
251 * Signature hash will be salted with 'idlen' bytes from 'id'.
256 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen,
63 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
124 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
218 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
255 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
356 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...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/pkcs11/
H A Dpkcs11-keygen.c102 int idlen = 0; local
116 {CKA_ID, &idbuf, idlen}
126 {CKA_ID, &idbuf, idlen}
159 idlen = 4;
209 if (idlen == 0) {
213 idlen = 2;
214 publickey_template[5].ulValueLen = idlen;
215 privatekey_template[6].ulValueLen = idlen;
/netbsd-6-1-5-RELEASE/sys/fs/filecorefs/
H A Dfilecore.h106 unsigned idlen:8; /* length of fragment id in bits */ member in struct:filecore_disc_record
H A Dfilecore_bmap.c185 c = 32 - (b & 31) - fcmp->drec.idlen;
188 a |= m << (fcmp->drec.idlen+c);
192 m = a >> fcmp->drec.idlen;
193 n = fcmp->drec.idlen + 1;
H A Dfilecore_vfsops.c382 / (fcdr->idlen + 1);
383 fcmp->mask = (1 << fcdr->idlen) - 1;
/netbsd-6-1-5-RELEASE/sys/sys/
H A Ddisklabel_acorn.h74 uint8_t idlen; member in struct:filecore_bootblock
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dpretty-print.c921 size_t idlen = strlen (ident);
926 for (i = 0; i < idlen;)
929 size_t utf8_len = decode_utf8_char (&uid[i], idlen - i, &c);
946 char *ret = GGC_NEWVEC (char, 4 * idlen + 1);
948 for (i = 0; i < idlen; i++)
977 size_t ret_alloc = 4 * idlen + 1;
985 size_t inbytesleft = idlen;
1048 char *ret = GGC_NEWVEC (char, 10 * idlen + 1);
1050 for (i = 0; i < idlen;)
1053 size_t utf8_len = decode_utf8_char (&uid[i], idlen
920 size_t idlen = strlen (ident); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/include/vms/
H A Dlbr.h324 unsigned char idlen; member in struct:vms_leh
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/vms/
H A Dlbr.h324 unsigned char idlen; member in struct:vms_leh
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/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
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/tls/
H A Dtls_client.c522 int idlen; local
549 if ((idlen = strlen(peerid)) > (patlen = strlen(pattern)) + 1
550 && peerid[idlen - patlen - 1] == '.'
551 && !strcasecmp(peerid + (idlen - patlen), pattern))
/netbsd-6-1-5-RELEASE/usr.sbin/rpc.bootparamd/
H A Dbootparamd.c319 size_t idlen = id == NULL ? 0 : strlen(id); local
434 if (!strncmp(word, id, idlen) && word[idlen] == '=') {
436 *server = &word[idlen + 1];
/netbsd-6-1-5-RELEASE/dist/pppd/pppd/
H A Dipv6cp.c588 int idlen = CILEN_IFACEID; \
589 if (len >= idlen) { \
591 PUTCHAR(idlen, ucp); \
593 len -= idlen; \
646 int idlen = CILEN_IFACEID; \
647 if ((len -= idlen) < 0) \
651 if (cilen != idlen || \
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/setkey/
H A Dtest-pfkey.c431 u_int idlen = strlen(str), len; local
433 len = sizeof(m_id) + PFKEY_ALIGN8(idlen);
442 str, idlen);
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dsiopvar.h52 long idlen; /* Identify message */ member in struct:siop_ds
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/src/lib/
H A Dmisc.c545 pgp_keyid(uint8_t *keyid, const size_t idlen, const pgp_pubkey_t *key, pgp_hash_alg_t hashtype) argument
565 (void) memcpy(keyid, bn + n - idlen, idlen);
569 finger.fingerprint + finger.length - idlen,
570 idlen);
/netbsd-6-1-5-RELEASE/sys/arch/acorn26/stand/lib/
H A Driscoscalls.h297 u_int8_t idlen; member in struct:filecore_disc
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/ssl/
H A Dt1_lib.c572 long extlen, idlen, itmp; local
575 idlen = 0;
582 idlen += itmp + 2;
594 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
596 if (extlen + idlen > 0xFFF0)
598 s2n(extlen + idlen + 5, ret);
600 s2n(idlen, ret);
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Doakley.c1787 int idlen, type; local
1799 idlen = iph1->id_p->l - sizeof(*id_b);
1809 if (idlen != name->l) {
1815 error = memcmp(id_b + 1, name->v, idlen);
1819 plogdump(LLV_DEBUG, id_b + 1, idlen);
1820 plogdump(LLV_DEBUG, name->v, idlen);
1889 error = memcmp(id_b + 1, a, idlen);
1895 plogdump(LLV_DEBUG, id_b + 1, idlen);
1896 plogdump(LLV_DEBUG, a, idlen);
1929 if (idlen !
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/acorn32/stand/lib/
H A Driscoscalls.h394 u_int8_t idlen; member in struct:filecore_disc
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/apps/
H A Dcms.c1307 int idlen; local
1311 idlen = ASN1_STRING_length(scid);
1313 BIO_dump_indent(out, id, idlen, 4);

Completed in 344 milliseconds

12