Differences
This shows you the differences between the selected revisions of the page.
| library_perl 2018-02-08 | library_perl 2022-06-16 (current) | ||
| Line 1: | Line 1: | ||
| ====== Using WinSCP .NET Assembly from Perl (ActivePerl) ====== | ====== Using WinSCP .NET Assembly from Perl (ActivePerl) ====== | ||
| - | //This article is based on [[https://www.activestate.com/activeperl|ActivePerl]] Perl distribution.// | + | //This article is based on [[https://www.activestate.com/products/perl/|ActivePerl]] Perl distribution.// |
| ===== Installing and Registering for COM ===== | ===== Installing and Registering for COM ===== | ||
| Line 33: | Line 33: | ||
| $sessionOptions->{'UserName'} = 'user'; | $sessionOptions->{'UserName'} = 'user'; | ||
| $sessionOptions->{'Password'} = 'mypassword'; | $sessionOptions->{'Password'} = 'mypassword'; | ||
| - | $sessionOptions->{'SshHostKeyFingerprint'} = 'ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx...'; | + | $sessionOptions->{'SshHostKeyFingerprint'} = 'ssh-rsa 2048 xxxxxxxxxxx...'; |
| </code> | </code> | ||
| Line 109: | Line 109: | ||
| $sessionOptions->{'UserName'} = 'user'; | $sessionOptions->{'UserName'} = 'user'; | ||
| $sessionOptions->{'Password'} = 'mypassword'; | $sessionOptions->{'Password'} = 'mypassword'; | ||
| - | $sessionOptions->{'SshHostKeyFingerprint'} = 'ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx...'; | + | $sessionOptions->{'SshHostKeyFingerprint'} = 'ssh-rsa 2048 xxxxxxxxxxx...'; |
| # Connect | # Connect | ||