Apache Shiro · Schema

HashResult

Password hash result

AuthenticationAuthorizationCryptographyJavaSecurityApacheOpen Source

Properties

Name Type Description
hash string Hashed password value
salt string Salt used for hashing
algorithm string Algorithm used
iterations integer Iterations applied
View JSON Schema on GitHub

JSON Schema

apache-shiro-hash-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shiro/refs/heads/main/json-schema/apache-shiro-hash-result-schema.json",
  "title": "HashResult",
  "description": "Password hash result",
  "type": "object",
  "properties": {
    "hash": {
      "type": "string",
      "description": "Hashed password value"
    },
    "salt": {
      "type": "string",
      "description": "Salt used for hashing"
    },
    "algorithm": {
      "type": "string",
      "description": "Algorithm used"
    },
    "iterations": {
      "type": "integer",
      "description": "Iterations applied"
    }
  }
}