Write the implementation for parseNonSRIUnprefixed

This commit is contained in:
Carlo Nucera 2020-07-02 11:34:40 -04:00
parent ea48e3a5b5
commit b6b10b1d4c
2 changed files with 6 additions and 1 deletions

View file

@ -173,6 +173,11 @@ Hash Hash::parseAny(std::string_view original, std::optional<HashType> optType)
return Hash(rest, hashType, isSRI);
}
Hash Hash::parseNonSRIUnprefixed(std::string_view s, HashType type)
{
return Hash(s, type, false);
}
Hash::Hash(std::string_view rest, HashType type, bool isSRI)
: Hash(type)
{

View file

@ -43,7 +43,7 @@ struct Hash
// hash type must be part of string
static Hash parseAnyPrefixed(std::string_view s);
// prefix parsed separately; non SRI hash
static Hash parseAnyUnprefixed(std::string_view s, HashType type);
static Hash parseNonSRIUnprefixed(std::string_view s, HashType type);
static Hash parseSRI(std::string_view original);