Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions parse/tags/tag04.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (t *tag04) parseV3(rootInfo *result.Item) (*result.Item, error) {
f = "another one pass signature"
}
rootInfo.Add(result.NewItem(
result.Name("Encrypted session key"),
result.Name("One-pass signature chain"),
result.Value(f),
result.Note(fmt.Sprintf("flag %#02x", flag)),
))
Expand Down Expand Up @@ -135,7 +135,7 @@ func (t *tag04) parseV5(rootInfo *result.Item) (*result.Item, error) {
f = "another one pass signature"
}
rootInfo.Add(result.NewItem(
result.Name("Encrypted session key"),
result.Name("One-pass signature chain"),
result.Value(f),
result.Note(fmt.Sprintf("flag %#02x", flag)),
))
Expand Down
2 changes: 1 addition & 1 deletion parse/tags/tag04_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
Public-key Algorithm: DSA (Digital Signature Algorithm) (pub 17)
11
Key ID: 0xb4da3bae7e20b81c
Encrypted session key: other than one pass signature (flag 0x01)
One-pass signature chain: other than one pass signature (flag 0x01)
`
)

Expand Down
Loading