How to use the bns.dnssec.signType function in bns

To help you get started, we’ve selected a few bns examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github handshake-org / hsd / lib / dns / key.js View on Github external
exports.signKSK = function signKSK(section, type) {
  return dnssec.signType(section, type, exports.ksk, exports.kskPriv);
};
github handshake-org / hsd / lib / dns / key.js View on Github external
exports.signZSK = function signZSK(section, type) {
  return dnssec.signType(section, type, exports.zsk, exports.zskPriv);
};