Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

21 строка
662 B

  1. {
  2. "type": "object",
  3. "additionalProperties": false,
  4. "properties": {
  5. "hashFunction": {
  6. "description": "The hashing algorithm to use, defaults to 'md5'. All functions from Node.JS' crypto.createHash are supported.",
  7. "type": "string",
  8. "minLength": 1
  9. },
  10. "hashDigest": {
  11. "description": "The encoding to use when generating the hash, defaults to 'base64'. All encodings from Node.JS' hash.digest are supported.",
  12. "enum": ["hex", "latin1", "base64"]
  13. },
  14. "hashDigestLength": {
  15. "description": "The prefix length of the hash digest to use, defaults to 4.",
  16. "type": "number",
  17. "minimum": 1
  18. }
  19. }
  20. }