-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
365 additions
and
181 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
"words": [ | ||
"absolufy", | ||
"ucum", | ||
"rdfx", | ||
"SPARQL", | ||
"boto", | ||
"awslogs", | ||
|
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
File renamed without changes.
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 @@ | ||
# Example data object | ||
--- | ||
id: "cryd:item-02" |
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 @@ | ||
{ | ||
"id": "cryd:item-01", | ||
"label": "file-1", | ||
"@type": "Item" | ||
} |
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,2 @@ | ||
<https://crystalia.link/data/item-01> <http://www.w3.org/2000/01/rdf-schema#label> "file-1" . | ||
<https://crystalia.link/data/item-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/crystalia/Item> . |
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,7 @@ | ||
@prefix cryd: <https://crystalia.link/data/> . | ||
@prefix crys: <https://w3id.org/crystalia/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
cryd:item-01 a crys:Item ; | ||
rdfs:label "file-1" . | ||
|
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,2 @@ | ||
id: cryd:item-01 | ||
label: file-1 |
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,7 @@ | ||
{ | ||
"id": "cryd:method-md5", | ||
"label": "MD5", | ||
"robustness": "VERY_HIGH", | ||
"comment": "MD5 is a widely used hash algorithm that generates a 128-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums.", | ||
"@type": "Method" | ||
} |
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,4 @@ | ||
<https://crystalia.link/data/method-md5> <http://www.w3.org/2000/01/rdf-schema#comment> "MD5 is a widely used hash algorithm that generates a 128-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums." . | ||
<https://crystalia.link/data/method-md5> <http://www.w3.org/2000/01/rdf-schema#label> "MD5" . | ||
<https://crystalia.link/data/method-md5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/crystalia/Method> . | ||
<https://crystalia.link/data/method-md5> <https://w3id.org/crystalia/robustness> "VERY_HIGH" . |
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,9 @@ | ||
@prefix cryd: <https://crystalia.link/data/> . | ||
@prefix crys: <https://w3id.org/crystalia/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
cryd:method-md5 a crys:Method ; | ||
rdfs:label "MD5" ; | ||
rdfs:comment "MD5 is a widely used hash algorithm that generates a 128-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums." ; | ||
crys:robustness "VERY_HIGH" . | ||
|
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,6 @@ | ||
id: cryd:method-md5 | ||
label: MD5 | ||
robustness: VERY_HIGH | ||
comment: MD5 is a widely used hash algorithm that generates a 128-bit hash value from | ||
a variable-length input. It is known for its speed and efficiency, making it suitable | ||
for various applications, including digital signatures and checksums. |
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,7 @@ | ||
{ | ||
"id": "cryd:method-sha1", | ||
"label": "SHA1", | ||
"robustness": "EXTREMELY_HIGH", | ||
"comment": "SHA1 is a widely used hash algorithm that generates a 160-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums.", | ||
"@type": "Method" | ||
} |
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,4 @@ | ||
<https://crystalia.link/data/method-sha1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/crystalia/Method> . | ||
<https://crystalia.link/data/method-sha1> <http://www.w3.org/2000/01/rdf-schema#label> "SHA1" . | ||
<https://crystalia.link/data/method-sha1> <http://www.w3.org/2000/01/rdf-schema#comment> "SHA1 is a widely used hash algorithm that generates a 160-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums." . | ||
<https://crystalia.link/data/method-sha1> <https://w3id.org/crystalia/robustness> "EXTREMELY_HIGH" . |
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,9 @@ | ||
@prefix cryd: <https://crystalia.link/data/> . | ||
@prefix crys: <https://w3id.org/crystalia/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
cryd:method-sha1 a crys:Method ; | ||
rdfs:label "SHA1" ; | ||
rdfs:comment "SHA1 is a widely used hash algorithm that generates a 160-bit hash value from a variable-length input. It is known for its speed and efficiency, making it suitable for various applications, including digital signatures and checksums." ; | ||
crys:robustness "EXTREMELY_HIGH" . | ||
|
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,6 @@ | ||
id: cryd:method-sha1 | ||
label: SHA1 | ||
robustness: EXTREMELY_HIGH | ||
comment: SHA1 is a widely used hash algorithm that generates a 160-bit hash value | ||
from a variable-length input. It is known for its speed and efficiency, making it | ||
suitable for various applications, including digital signatures and checksums. |
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,7 @@ | ||
{ | ||
"id": "cryd:method-sha256", | ||
"label": "SHA256", | ||
"robustness": "EXTREMELY_HIGH", | ||
"comment": "SHA256 is a widely used hash algorithm that generates a 256-bit hash value from a variable-length input. The long signature makes it more resilient against forgery attempts compared to hash algorithms with shorter signatures.", | ||
"@type": "Method" | ||
} |
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,4 @@ | ||
<https://crystalia.link/data/method-sha256> <http://www.w3.org/2000/01/rdf-schema#comment> "SHA256 is a widely used hash algorithm that generates a 256-bit hash value from a variable-length input. The long signature makes it more resilient against forgery attempts compared to hash algorithms with shorter signatures." . | ||
<https://crystalia.link/data/method-sha256> <https://w3id.org/crystalia/robustness> "EXTREMELY_HIGH" . | ||
<https://crystalia.link/data/method-sha256> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/crystalia/Method> . | ||
<https://crystalia.link/data/method-sha256> <http://www.w3.org/2000/01/rdf-schema#label> "SHA256" . |
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,9 @@ | ||
@prefix cryd: <https://crystalia.link/data/> . | ||
@prefix crys: <https://w3id.org/crystalia/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
cryd:method-sha256 a crys:Method ; | ||
rdfs:label "SHA256" ; | ||
rdfs:comment "SHA256 is a widely used hash algorithm that generates a 256-bit hash value from a variable-length input. The long signature makes it more resilient against forgery attempts compared to hash algorithms with shorter signatures." ; | ||
crys:robustness "EXTREMELY_HIGH" . | ||
|
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,6 @@ | ||
id: cryd:method-sha256 | ||
label: SHA256 | ||
robustness: EXTREMELY_HIGH | ||
comment: SHA256 is a widely used hash algorithm that generates a 256-bit hash value | ||
from a variable-length input. The long signature makes it more resilient against | ||
forgery attempts compared to hash algorithms with shorter signatures. |
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,46 @@ | ||
## Item-001 | ||
### Input | ||
```yaml | ||
id: cryd:item-01 | ||
label: file-1 | ||
|
||
``` | ||
## Method-MD5 | ||
### Input | ||
```yaml | ||
comment: MD5 is a widely used hash algorithm that generates a 128-bit hash value from | ||
a variable-length input. It is known for its speed and efficiency, making it suitable | ||
for various applications, including digital signatures and checksums. | ||
id: cryd:method-md5 | ||
label: MD5 | ||
robustness: VERY_HIGH | ||
|
||
``` | ||
## Method-SHA1 | ||
### Input | ||
```yaml | ||
comment: SHA1 is a widely used hash algorithm that generates a 160-bit hash value | ||
from a variable-length input. It is known for its speed and efficiency, making it | ||
suitable for various applications, including digital signatures and checksums. | ||
id: cryd:method-sha1 | ||
label: SHA1 | ||
robustness: EXTREMELY_HIGH | ||
|
||
``` | ||
## Method-SHA256 | ||
### Input | ||
```yaml | ||
comment: SHA256 is a widely used hash algorithm that generates a 256-bit hash value | ||
from a variable-length input. The long signature makes it more resilient against | ||
forgery attempts compared to hash algorithms with shorter signatures. | ||
id: cryd:method-sha256 | ||
label: SHA256 | ||
robustness: EXTREMELY_HIGH | ||
|
||
``` | ||
## Item-001 | ||
### Input | ||
```yaml | ||
id: cryd:item-02 | ||
|
||
``` |
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,4 @@ | ||
# Example data object | ||
--- | ||
id: "cryd:item-01" | ||
label: "file-1" |
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,8 @@ | ||
--- | ||
id: "cryd:method-md5" | ||
label: "MD5" | ||
robustness: "VERY_HIGH" | ||
comment: >- | ||
MD5 is a widely used hash algorithm that generates a 128-bit hash value from a | ||
variable-length input. It is known for its speed and efficiency, making it | ||
suitable for various applications, including digital signatures and checksums. |
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,8 @@ | ||
--- | ||
id: "cryd:method-sha1" | ||
label: "SHA1" | ||
robustness: "EXTREMELY_HIGH" | ||
comment: >- | ||
SHA1 is a widely used hash algorithm that generates a 160-bit hash value from a | ||
variable-length input. It is known for its speed and efficiency, making it | ||
suitable for various applications, including digital signatures and checksums. |
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,8 @@ | ||
--- | ||
id: "cryd:method-sha256" | ||
label: "SHA256" | ||
robustness: "EXTREMELY_HIGH" | ||
comment: >- | ||
SHA256 is a widely used hash algorithm that generates a 256-bit hash value from a | ||
variable-length input. The long signature makes it more resilient against forgery | ||
attempts compared to hash algorithms with shorter signatures. |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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
Oops, something went wrong.