Apache Shiro · JSON Structure

Apache Shiro Hash Result Structure

Password hash result

Type: object Properties: 4
AuthenticationAuthorizationCryptographyJavaSecurityApacheOpen Source

HashResult is a JSON Structure definition published by Apache Shiro, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

hash salt algorithm iterations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shiro/refs/heads/main/json-structure/apache-shiro-hash-result-structure.json",
  "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": "int32",
      "description": "Iterations applied"
    }
  },
  "name": "HashResult"
}