Skip to content

Commit

Permalink
doc(sshfp): added RFC 7479, 8709
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Jun 21, 2022
1 parent 2680340 commit f94519d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Notable changes to this project are documented in this file.
#### Unreleased


### [1.1.6] - 2022-06-21

- doc(sshfp): added RFC 7479, 8709


### [1.1.5] - 2022-06-03

- ci: auto-populate node LTS versions to run CI tests with
Expand Down Expand Up @@ -305,5 +310,5 @@ Notable changes to this project are documented in this file.
[0.2.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.1
[0.2.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.0
[1.1.4]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.4

[1.1.5]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.5
[1.1.6]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.6
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nictool/dns-resource-record",
"version": "1.1.5",
"version": "1.1.6",
"description": "DNS Resource Records",
"main": "index.js",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions rr/sshfp.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class SSHFP extends RR {

/****** Resource record specific setters *******/
setAlgorithm (val) {
// 0: reserved; 1: RSA 2: DSA 3: ECDSA 4: Ed25519 6:Ed448
// 0: reserved 1: RSA 2: DSA 3: ECDSA 4: Ed25519 6: Ed448
this.is8bitInt('SSHFP', 'algorithm', val)

this.set('algorithm', val)
Expand All @@ -35,7 +35,7 @@ export default class SSHFP extends RR {
}

getRFCs () {
return [ 4255 ]
return [ 4255, 7479, 8709 ]
}

getTypeId () {
Expand Down

0 comments on commit f94519d

Please sign in to comment.