HomeSort by: relevance | last modified time | path
    Searched refs:cds (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
cds_59.c 85 dns_rdata_cds_t *cds = target; local
88 REQUIRE(cds != NULL);
94 cds->common.rdclass = rdata->rdclass;
95 cds->common.rdtype = rdata->type;
96 ISC_LINK_INIT(&cds->common, link);
103 dns_rdata_cds_t *cds = source; local
105 REQUIRE(cds != NULL);
106 REQUIRE(cds->common.rdtype == dns_rdatatype_cds);
108 if (cds->mctx == NULL) {
112 if (cds->digest != NULL)
    [all...]
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
cds_59.c 85 dns_rdata_cds_t *cds = target; local
88 REQUIRE(cds != NULL);
94 DNS_RDATACOMMON_INIT(cds, rdata->type, rdata->rdclass);
101 dns_rdata_cds_t *cds = source; local
103 REQUIRE(cds != NULL);
104 REQUIRE(cds->common.rdtype == dns_rdatatype_cds);
106 if (cds->mctx == NULL) {
110 if (cds->digest != NULL) {
111 isc_mem_free(cds->mctx, cds->digest)
    [all...]
  /src/external/lgpl2/userspace-rcu/lib/
Makefile 3 SUBDIR+= liburcu liburcu-bp liburcu-cds liburcu-common liburcu-mb
  /src/external/mpl/bind/dist/bin/tests/system/cds/
setup.sh 22 Z=cds.test
51 sed 's/ IN DS / IN CDS /' <DS.$n >>CDS.$n
52 sed 's/ IN DS / IN CDS /' <DS.$n-1 >>CDS.$n-1
53 sed 's/ IN DS / IN CDS /' <DS.$n-2 >>CDS.$n-2
108 cat sig.null CDS.1 >brk.unsigned-cds
110 cat db.null CDS.1 | sign cds.
    [all...]
tests.sh 70 Z=cds.test
74 testcase 1 $CDS
78 testcase 1 $CDS $Z
82 testcase 1 $CDS -d . $Z
86 testcase 1 $CDS -d empty $Z
90 testcase 1 $CDS -d DS.1 $Z
94 testcase 1 $CDS -f db.null -d DS.1 $Z
98 testcase 1 $CDS -f sig.null -d DS.1 $Z
102 testcase 1 $CDS -v1 -f sig.null -d DS.1 $Z
107 testcase 0 $CDS -v1 -s -7200 -f sig.null -d DS.1 $
    [all...]
  /src/external/mpl/bind/bin/dnssec/
Makefile 3 SUBDIR= dnssec-cds dnssec-dsfromkey dnssec-keyfromlabel dnssec-keygen \
  /src/external/lgpl2/userspace-rcu/lib/liburcu-cds/
Makefile 7 LIB=urcu-cds
  /src/external/mpl/bind/dist/bin/tests/system/checkconf/
bad-kasp-digest-type.conf 15 cds-digest-types { foobar; 2; };
bad-kasp-digest-unsupported.conf 15 cds-digest-types { GOST; 2; };
kasp-deprecated-fips.conf 15 cds-digest-types { sha1; };
kasp-deprecated.conf 15 cds-digest-types { sha1; };
good-kasp.conf 21 cds-digest-types {
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-dsfromkey.c 246 emit(dns_dsdigest_t dt, bool showall, bool cds, dns_rdata_t *rdata) {
308 if (cds) {
309 printf(" CDS ");
319 emits(bool showall, bool cds, dns_rdata_t *rdata) {
330 emit(dtype[i], showall, cds, rdata);
355 " -C: print CDS records\n"
364 fprintf(stderr, "Output: DS or CDS RRs\n");
375 bool cds = false; local
409 cds = true;
548 emits(showall, cds, &rdata)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/ksr/ns1/
named.conf.j2 67 cds-digest-types { SHA-1; SHA-256; SHA-384; };
70 dnssec-policy "no-cds" {
76 cds-digest-types { };
  /src/external/mpl/bind/dist/bin/tests/system/rollover-csk-roll1/ns3/
kasp.conf 24 cds-digest-types { "sha-384"; }; // use a different digest type for testing purposes
48 cds-digest-types { "sha-384"; }; // use a different digest type for testing purposes
  /src/external/mpl/bind/dist/bin/tests/system/rollover-csk-roll2/ns3/
kasp.conf 24 cds-digest-types { "sha-256"; "sha-384"; }; // use two digest type for testing purposes
48 cds-digest-types { "sha-256"; "sha-384"; }; // use two digest type for testing purposes
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/ns2/
sign.sh 210 zone=cds.secure
211 infile=cds.secure.db.in
212 zonefile=cds.secure.db
215 "$DSFROMKEY" -C "$key1.key" >"$key1.cds"
216 cat "$infile" "$key1.key" "$key2.key" "$key1.cds" >$zonefile
219 zone=cds-x.secure
220 infile=cds.secure.db.in
221 zonefile=cds-x.secure.db
225 "$DSFROMKEY" -C "$key2.key" >"$key2.cds"
226 cat "$infile" "$key1.key" "$key2.key" "$key3.key" "$key2.cds" >"$zonefile
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
dnssec.h 372 dns_rdataset_t *cds, dns_rdataset_t *cdnskey,
377 * Update the CDS and CDNSKEY RRsets, adding and removing keys as needed.
379 * For each key in 'keys', check if corresponding CDS and CDNSKEY records
381 * CDNSKEY record added to the 'cdnskey' RRset. Also one CDS record will be
382 * added to the 'cds' RRset for each digest type in 'digests'.
384 * For each key in 'rmkeys', remove any associated CDS and CDNSKEY records from
385 * the RRsets 'cds' and 'cdnskey'.
387 * 'hint_ttl' is the TTL to use for the CDS and CDNSKEY RRsets if there is no
403 dns_dnssec_syncdelete(dns_rdataset_t *cds, dns_rdataset_t *cdnskey,
408 * Add or remove the CDS DELETE record and the CDNSKEY DELETE record
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
dnssec.h 360 dns_rdataset_t *cds, dns_rdataset_t *cdnskey,
364 * Update the CDS and CDNSKEY RRsets, adding and removing keys as needed.
372 dns_dnssec_syncdelete(dns_rdataset_t *cds, dns_rdataset_t *cdnskey,
377 * Add or remove the CDS DELETE record and the CDNSKEY DELETE record.
378 * If 'expect_cds_delete' is true, the CDS DELETE record should be present.
379 * Otherwise, the CDS DELETE record must be removed from the RRsets (if
  /src/external/mpl/bind/dist/lib/dns/
dnssec.c 627 * Indicate whether a key is scheduled to to have CDS/CDNSKEY records
679 * Indicate whether a key is scheduled to to have CDS/CDNSKEY records
1822 dns_rdataset_t *cds, unsigned int digesttype, dns_ttl_t ttl,
1836 "build rdata CDS (%s) for key %s failed", algbuf,
1842 if (!dns_rdataset_isassociated(cds) || !exists(cds, &cdsrdata)) {
1848 "CDS (%s) for key %s is now published", algbuf,
1857 dns_rdataset_t *cds, unsigned int digesttype, dns_diff_t *diff,
1870 if (exists(cds, &cdsrdata)) {
1876 "CDS (%s) for key %s is now deleted", algbuf
    [all...]
  /src/external/lgpl2/userspace-rcu/dist/tests/unit/
test_build.c 16 #include <urcu/cds.h>
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
kasp.py 508 cds = value.split()
525 rdata_fromwire = " ".join(cds[:7])
528 f"CDS RDATA MISMATCH: {rdata_fromfile} - {rdata_fromwire}"
533 digest_fromwire = "".join(cds[7:]).lower()
536 f"CDS DIGEST MISMATCH: {digest_fromfile} - {digest_fromwire}"
867 if covers in [dns.rdatatype.DNSKEY, dns.rdatatype.CDNSKEY, dns.rdatatype.CDS]:
965 # CDS must be published or not.
1022 # Check if the correct CDS records are published. If the current time
1024 # a CDS record published.
1034 # CDS must be published or not
1183 cds = f"{rr.name} {rr.ttl} {rdclass} {rdtype} {rdata}" variable
    [all...]
  /src/external/mpl/bind/dist/tests/dns/
skr_test.c 66 dns_rdata_t cds; member in struct:__anon24221
279 /* CDS */
280 dns_rdata_init(&test_bundles[bnum].cds);
282 &test_bundles[bnum].cds);
291 ISC_LIST_APPEND(cdslist->rdata, &test_bundles[bnum].cds, link);
387 cmp = dns_rdata_compare(&tuple->rdata, &tb->cds);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
dnssec.c 667 * Indicate whether a key is scheduled to to have CDS/CDNSKEY records
719 * Indicate whether a key is scheduled to to have CDS/CDNSKEY records
1970 dns_rdataset_t *cds, dns_rdataset_t *cdnskey,
2006 * the rdata to CDNSKEY and CDS for comparison.
2022 "CDS for key %s is now published",
2028 if (!dns_rdataset_isassociated(cds) ||
2029 !exists(cds, &cds_sha256))
2045 if (dns_rdataset_isassociated(cds)) {
2047 if (exists(cds, &cds_sha1)) {
2052 "CDS (SHA-1) for key %s
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-log.c 112 CASE_TO_STR(cds);

Completed in 39 milliseconds

1 2