Hello community,

here is the log from the commit of package yast2-security for openSUSE:Factory
checked in at Tue Apr 5 18:03:06 CEST 2011.



--------
--- yast2-security/yast2-security.changes       2010-11-10 14:21:36.000000000 
+0100
+++ yast2-security/yast2-security.changes       2011-04-05 11:05:48.000000000 
+0200
@@ -1,0 +2,6 @@
+Tue Apr  5 11:03:35 CEST 2011 - [email protected]
+
+- added support for SHA-2 based crypto methods (fate309705)
+- 2.21.0 
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  yast2-security-2.20.2.tar.bz2

New:
----
  yast2-security-2.21.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-security.spec ++++++
--- /var/tmp/diff_new_pack.CKk93A/_old  2011-04-05 18:02:56.000000000 +0200
+++ /var/tmp/diff_new_pack.CKk93A/_new  2011-04-05 18:02:56.000000000 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package yast2-security (Version 2.20.2)
+# spec file for package yast2-security
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,11 @@
 
 
 Name:           yast2-security
-Version:        2.20.2
+Version:        2.21.0
 Release:        1
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-security-2.20.2.tar.bz2
+Source0:        yast2-security-2.21.0.tar.bz2
 
 Prefix:         /usr
 
@@ -50,7 +50,7 @@
 The YaST2 component for security settings configuration.
 
 %prep
-%setup -n yast2-security-2.20.2
+%setup -n yast2-security-2.21.0
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++++++ yast2-security-2.20.2.tar.bz2 -> yast2-security-2.21.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-security-2.20.2/VERSION 
new/yast2-security-2.21.0/VERSION
--- old/yast2-security-2.20.2/VERSION   2010-11-10 14:20:02.000000000 +0100
+++ new/yast2-security-2.21.0/VERSION   2011-04-05 11:03:54.000000000 +0200
@@ -1 +1 @@
-2.20.2
+2.21.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-security-2.20.2/src/Security.ycp 
new/yast2-security-2.21.0/src/Security.ycp
--- old/yast2-security-2.20.2/src/Security.ycp  2010-11-10 12:33:38.000000000 
+0100
+++ new/yast2-security-2.21.0/src/Security.ycp  2011-04-04 08:32:22.000000000 
+0200
@@ -4,7 +4,7 @@
  * Summary:    Data for the security configuration
  * Authors:    Michal Svec <[email protected]>
  *
- * $Id: Security.ycp 58880 2009-10-01 11:48:57Z jsuchome $
+ * $Id: Security.ycp 62809 2010-11-10 16:07:59Z jsuchome $
  */
 
 {
@@ -242,6 +242,8 @@
     "des" : 8,
     "md5" : 127,
     "blowfish" : 72,
+    "sha256"   : 127,
+    "sha512"   : 127
 ];
 
 /**
@@ -380,11 +382,11 @@
     // read the password hash settings
     string method = PamSettings::GetDefaultValue ("CRYPT_FILES");
     if (method == nil || method == "" ||
-       !contains (["des","md5","blowfish"],method))
+       !contains (["des","md5","blowfish","sha256","sha512"],method))
     {
        method = PamSettings::GetHashMethod ();
     }
-    if (method == "" || !contains (["des","md5","blowfish"],method))
+    if (method == "" || !contains 
(["des","md5","blowfish","sha256","sha512"],method))
        method = "des";
     Settings["PASSWD_ENCRYPTION"]      = method;
     Settings["GROUP_ENCRYPTION"]       = PamSettings::GetGroupHashMethod ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-security-2.20.2/src/security.ycp 
new/yast2-security-2.21.0/src/security.ycp
--- old/yast2-security-2.20.2/src/security.ycp  2009-06-02 22:40:39.000000000 
+0200
+++ new/yast2-security-2.21.0/src/security.ycp  2011-04-01 16:32:49.000000000 
+0200
@@ -159,7 +159,7 @@
            // command line help text for 'set passwd' option
            "help"      : _("Password encryption method"),
            "type"      : "enum",
-           "typespec"  : [ "des", "md5", "blowfish" ],
+           "typespec"  : [ "des", "md5", "blowfish", "sha256", "sha512" ],
        ],
        "crack" : $[
            // command line help text for 'set crack' option
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-security-2.20.2/src/widgets.ycp 
new/yast2-security-2.21.0/src/widgets.ycp
--- old/yast2-security-2.20.2/src/widgets.ycp   2010-02-05 12:40:12.000000000 
+0100
+++ new/yast2-security-2.21.0/src/widgets.ycp   2011-04-05 11:04:36.000000000 
+0200
@@ -166,7 +166,7 @@
        /* ComboBox label */
        "Label" : _("P&assword Encryption Method"),
        /* ComboBox values */
-       "Options" : [["des","DES"],["md5","MD5"],["blowfish","Blowfish"]],
+       "Options" : [["des","DES"],["md5","MD5"],["blowfish","Blowfish"], 
["sha256", "SHA-256"], ["sha512", "SHA-512"]],
        "Value" : "des",
        "Notify" : "yes",
     ],


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to