-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from boyter/mtime
Mtime
- Loading branch information
Showing
30 changed files
with
1,085 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
package processor | ||
|
||
import "time" | ||
|
||
// Holds the result after processing the hashes for the file | ||
type Result struct { | ||
File string | ||
MD4 string | ||
MD5 string | ||
SHA1 string | ||
SHA256 string | ||
SHA512 string | ||
Blake2b256 string | ||
Blake2b512 string | ||
Blake3 string | ||
Sha3224 string | ||
Sha3256 string | ||
Sha3384 string | ||
Sha3512 string | ||
Bytes int64 | ||
Description string | ||
Version string | ||
Date string | ||
Urls []string | ||
File string | ||
MD4 string | ||
MD5 string | ||
SHA1 string | ||
SHA256 string | ||
SHA512 string | ||
Blake2b256 string | ||
Blake2b512 string | ||
Blake3 string | ||
Sha3224 string | ||
Sha3256 string | ||
Sha3384 string | ||
Sha3512 string | ||
Bytes int64 | ||
MTime *time.Time | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.