siyuan-note/siyuan · error

Argon2id Iterations too low (minimum 3)

Error message

Argon2id Iterations too low (minimum 3)

What it means

Raised by ValidateArgon2Params when p.Iterations < 3. Three passes is the enforced minimum matching the OWASP-2023 default; fewer would weaken the KDF. Caught during unlock/setup/change-password.

Source

Thrown at kernel/util/kdf.go:74

		Parallelism: 4,
		KeyLength:   32,
	}
}

// ValidateArgon2Params 校验 Argon2id 参数是否在合理范围内,防止恶意备份设置极大内存导致 OOM,
// 或过弱参数降低安全性。
func ValidateArgon2Params(p Argon2Params) (Argon2Params, error) {
	if p.KeyLength != 32 {
		return p, errors.New("Argon2id KeyLength must be 32")
	}
	if p.Memory < 64*1024 {
		return p, errors.New("Argon2id Memory too low (minimum 64 MB)")
	}
	if p.Memory > 256*1024 {
		return p, errors.New("Argon2id Memory too high (maximum 256 MB)")
	}
	if p.Iterations < 3 {
		return p, errors.New("Argon2id Iterations too low (minimum 3)")
	}
	if p.Iterations > 10 {
		return p, errors.New("Argon2id Iterations too high (maximum 10)")
	}
	if p.Parallelism == 0 || p.Parallelism > 16 {
		return p, errors.New("Argon2id Parallelism must be between 1 and 16")
	}
	return p, nil
}

// DeriveKey 用 Argon2id 从密码派生密钥。同一 password+salt+params 多次调用结果一致。
func DeriveKey(password string, salt []byte, p Argon2Params) []byte {
	return argon2.IDKey([]byte(password), salt, p.Iterations, p.Memory, p.Parallelism, p.KeyLength)
}

// Encrypt 用 AES-256-GCM 加密。每次调用生成随机 nonce,因此同一明文多次加密结果不同。
// 返回格式:magic(4B) || spec(1B) || algorithm(1B) || nonceLength(1B) || nonce || ciphertext || GCM tag(16B)。
func Encrypt(key, plaintext []byte) ([]byte, error) {

View on GitHub (pinned to 251596fc0d)

Solutions

  1. Set KDFParams.Iterations to at least 3 (DefaultArgon2Params uses 3).
  2. Regenerate params through the official change-password flow.
  3. Treat a zero-value Iterations field as missing and replace it with the default before validating.

Example fix

// before
params := util.Argon2Params{Memory: 64 * 1024, Iterations: 1, Parallelism: 4, KeyLength: 32}

// after
params := util.Argon2Params{Memory: 64 * 1024, Iterations: 3, Parallelism: 4, KeyLength: 32}
Defensive patterns

Strategy: validation

Validate before calling

if p.Iterations < 3 {
    p.Iterations = 3
}
if _, err := util.ValidateArgon2Params(p); err != nil {
    return err
}

Prevention

When it happens

Trigger: KDFParams.Iterations is loaded as 0, 1, or 2 from an edited/imported notebook crypto config.

Common situations: Hand-editing conf JSON to make unlock faster; a third-party backup writer using a lower iteration count; a deserialization default of 0 when the field is absent.

Related errors


AI-assisted analysis of siyuan-note/siyuan@251596fc0d (2026-08-12). Data as JSON: /api/errors/fa4869daa872d71f. Report an issue: GitHub.