NMSSH 2.3.1

NMSSH 2.3.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jul 2018

Maintained by Tommaso Madonia.



NMSSH 2.3.1

  • By
  • Christoffer Lejdborg and Tommaso Madonia

NMSSH Carthage compatible

NMSSH is a clean, easy-to-use, unit tested framework for iOS and OSX that wraps libssh2.

Questions & Issues

If you encounter an issue or have any questions about implementing NMSSH, please post them in the issue tracker – we do not offer free support via email.

Installation

CocoaPods

pod 'NMSSH'

Carthage

github "NMSSH/NMSSH"

Build from source

Consult the Wiki for detailed information about how to:

Include it in your project

Add #import <NMSSH/NMSSH.h> to your source file.

OpenSSL and Libssh2 binaries

NMSSH includes a precompiled version of Libssh2 and OpenSSL compiled with this script. You can easily recompile the libraries and replace the binaries.

What does it look like?

NMSSHSession *session = [NMSSHSession connectToHost:@"127.0.0.1:22"
                                       withUsername:@"user"];

if (session.isConnected) {
    [session authenticateByPassword:@"pass"];

    if (session.isAuthorized) {
        NSLog(@"Authentication succeeded");
    }
}
    
NSError *error = nil;
NSString *response = [session.channel execute:@"ls -l /var/www/" error:&error];
NSLog(@"List of my sites: %@", response);
    
BOOL success = [session.channel uploadFile:@"~/index.html" to:@"/var/www/9muses.se/"];

[session disconnect];

API Documentation

API documentation for NMSSH is available at http://cocoadocs.org/docsets/NMSSH/.

Guidelines for contributions

  • Follow the code conventions.
  • Fork NMSSH and create a feature branch. Develop your feature.
  • Open a pull request.

Note: Make sure that you have documented your code and that you follow the code conventions before opening a pull request.

NMSSH is used in

Developed by

Core team

Contributors

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.