case class CSPHashConfig(algorithm: String, hash: String, pattern: String) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- CSPHashConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CSPHashConfig(algorithm: String, hash: String, pattern: String)
- algorithm
the algorithm from https://www.w3.org/TR/CSP3/#grammardef-hash-algorithm
- hash
set to the hash value in configuration
- pattern
the pattern in directives to substitute with hash.
Value Members
- val algorithm: String
- val hash: String
- val pattern: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def withAlgorithm(algorithm: String): CSPHashConfig
- def withHash(hash: String): CSPHashConfig
- def withPattern(pattern: String): CSPHashConfig
CSP Hash Configuration.
the algorithm from https://www.w3.org/TR/CSP3/#grammardef-hash-algorithm
set to the hash value in configuration
the pattern in directives to substitute with hash.