Lines Matching defs:keystruct
691 dns_rdata_dnskey_t keystruct;
734 keystruct.common.rdclass = viewclass;
735 keystruct.common.rdtype = dns_rdatatype_dnskey;
737 * The key data in keystruct is not dynamically allocated.
739 keystruct.mctx = NULL;
741 ISC_LINK_INIT(&keystruct.common, link);
749 keystruct.flags = (isc_uint16_t)flags;
750 keystruct.protocol = (isc_uint8_t)proto;
751 keystruct.algorithm = (isc_uint8_t)alg;
759 keystruct.datalen = r.length;
760 keystruct.data = r.base;
762 if ((keystruct.algorithm == DST_ALG_RSASHA1 ||
763 keystruct.algorithm == DST_ALG_RSAMD5) &&
771 keystruct.common.rdclass,
772 keystruct.common.rdtype,
773 &keystruct, &rrdatabuf));