all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pdm-devel] [PATCH datacenter-manager] api types: require a minimum password length of 8 characters
@ 2025-11-26 17:23 Shannon Sterz
  2025-11-26 21:18 ` [pdm-devel] applied: " Thomas Lamprecht
  0 siblings, 1 reply; 2+ messages in thread
From: Shannon Sterz @ 2025-11-26 17:23 UTC (permalink / raw)
  To: pdm-devel

we already adopted a minimum password length requirement of 8
characters in almost all other products, so enforce it here to. this
means we comply with the latest NIST recommendation [1].

[1]: https://pages.nist.gov/800-63-4/sp800-63b.html#passwordver

Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
 lib/pdm-api-types/src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pdm-api-types/src/lib.rs b/lib/pdm-api-types/src/lib.rs
index 439efc8..666f89e 100644
--- a/lib/pdm-api-types/src/lib.rs
+++ b/lib/pdm-api-types/src/lib.rs
@@ -148,7 +148,7 @@ pub const OPENSSL_CIPHERS_TLS_1_3_SCHEMA: Schema =
 
 pub const PDM_PASSWORD_SCHEMA: Schema = StringSchema::new("User Password.")
     .format(&PASSWORD_FORMAT)
-    .min_length(5)
+    .min_length(8)
     .max_length(64)
     .schema();
 
-- 
2.47.3



_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [pdm-devel] applied: [PATCH datacenter-manager] api types: require a minimum password length of 8 characters
  2025-11-26 17:23 [pdm-devel] [PATCH datacenter-manager] api types: require a minimum password length of 8 characters Shannon Sterz
@ 2025-11-26 21:18 ` Thomas Lamprecht
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Lamprecht @ 2025-11-26 21:18 UTC (permalink / raw)
  To: pdm-devel, Shannon Sterz

On Wed, 26 Nov 2025 18:23:10 +0100, Shannon Sterz wrote:
> we already adopted a minimum password length requirement of 8
> characters in almost all other products, so enforce it here to. this
> means we comply with the latest NIST recommendation [1].
> 
> [1]: https://pages.nist.gov/800-63-4/sp800-63b.html#passwordver
> 
> 
> [...]

Applied, thanks!

[1/1] api types: require a minimum password length of 8 characters
      commit: de986d8ff4cdbbc3c921dcf42bebf21e93102dc7


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-11-26 21:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-26 17:23 [pdm-devel] [PATCH datacenter-manager] api types: require a minimum password length of 8 characters Shannon Sterz
2025-11-26 21:18 ` [pdm-devel] applied: " Thomas Lamprecht

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal