syslogins and syssrvroles system tables

The existing password columns in the syslogins and syssrvroles tables in the master database are upgraded from varbinary(30) to varbinary(128):

master..syslogins (
  ... 
 password varbinary(128) null, /* encrypted password */
  ... )
master..syssrvroles (
  ... 
 password varbinary(128) null, /* encrypted password */	
  ... )