-
Notifications
You must be signed in to change notification settings - Fork 30
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 #30 from rustyconover/fix_add_descriptions
fix: add extended descriptions for lindel, shellfs and crypto.
- Loading branch information
Showing
5 changed files
with
32 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
function,description,comment,example | ||
crypto_hash,"Calculate the value of a hash function","","select crypto_hash('md5', 'test');" | ||
crypto_hmac,"Calculate a HMAC value","","select crypto_hmac('sha2-256', 'secret key', 'secret message');" |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
function,description,comment,example | ||
hilbert_encode,"Encode an array of values using the Hilbert space filling curve","","select hilbert_encode([43, 3]::integer[2]);" | ||
hilbert_decode,"Decode a Hilbert encoded set of values","","select hilbert_decode(7::uint16, 2, false, true) as values;" | ||
morton_encode,"Encode an array of values using Morton encoding","","select morton_encode([43, 3]::integer[2]);" | ||
morton_decode,"Decode an array of values using Morton encoding","","select morton_decode(7::uint16, 2, false, true) as values;" |
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