Index: /issm/trunk/src/m/utils/OS/issmscpin.m
===================================================================
--- /issm/trunk/src/m/utils/OS/issmscpin.m	(revision 9368)
+++ /issm/trunk/src/m/utils/OS/issmscpin.m	(revision 9369)
@@ -40,8 +40,8 @@
 
 		username=input('Username: (quoted string) ');
-		password=input('Password: (quoted string) ');
+		key=input('Key: (quoted string) ');
 
 		for i=1:numel(packages),
-			[status,result]=system([ISSM_TIER '/externalpackages/ssh/pscp.exe -l "' username '" -pw "' password '" ' host ':' path '/' packages{i} ' ./']);
+			[status,result]=system([ISSM_TIER '/externalpackages/ssh/pscp.exe -l "' username '" -pw "' key '" ' host ':' path '/' packages{i} ' ./']);
 			if status, 
 				error('scpin error message: could not call putty pscp');
Index: /issm/trunk/src/m/utils/OS/issmscpout.m
===================================================================
--- /issm/trunk/src/m/utils/OS/issmscpout.m	(revision 9368)
+++ /issm/trunk/src/m/utils/OS/issmscpout.m	(revision 9369)
@@ -31,8 +31,8 @@
 
 		username=input('Username: (quoted string) ');
-		password=input('Password: (quoted string) ');
+		key=input('Key: (quoted string) ');
 
 		for i=1:numel(packages),
-			[status,result]=system([ISSM_TIER '/externalpackages/ssh/pscp.exe -l "' username '" -pw "' password '" ' packages{i} ' ' host ':' path]);
+			[status,result]=system([ISSM_TIER '/externalpackages/ssh/pscp.exe -l "' username '" -pw "' key '" ' packages{i} ' ' host ':' path]);
 			if status, 
 				error('scpout error message: could not call putty pscp');
Index: /issm/trunk/src/m/utils/OS/issmssh.m
===================================================================
--- /issm/trunk/src/m/utils/OS/issmssh.m	(revision 9368)
+++ /issm/trunk/src/m/utils/OS/issmssh.m	(revision 9369)
@@ -23,7 +23,7 @@
 
 		username=input('Username: (quoted string) ');
-		password=input('Password: (quoted string) ');
+		key=input('Key: (quoted string) ');
 
-		system([ISSM_TIER '/externalpackages/ssh/plink.exe -ssh -l "' username '" -pw "' password '" ' host ' "' command '"']);
+		system([ISSM_TIER '/externalpackages/ssh/plink.exe -ssh -l "' username '" -pw "' key '" ' host ' "' command '"']);
 
 	else
