@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .
vocabulary:HashNameVocab a rdfs:Datatype ;
rdfs:label "Hash Name Vocabulary"@en-US ;
rdfs:comment "Defines an open-vocabulary of hashing algorithm names."@en-US ;
rdfs:subClassOf rdfs:Resource ;
owl:oneOf ( "MD5"^^vocabulary:HashNameVocab "MD6"^^vocabulary:HashNameVocab "SHA1"^^vocabulary:HashNameVocab "SHA224"^^vocabulary:HashNameVocab "SHA256"^^vocabulary:HashNameVocab "SHA384"^^vocabulary:HashNameVocab "SHA512"^^vocabulary:HashNameVocab "SSDEEP"^^vocabulary:HashNameVocab ) .