dartssh 1.0.3+3 dartssh: ^1.0.3+3 copied to clipboard
Library providing a pure Dart SSH implementation with tunneling.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add dartssh
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
dartssh: ^1.0.3+3
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:dartssh/agent.dart';
import 'package:dartssh/client.dart';
import 'package:dartssh/http.dart';
import 'package:dartssh/http_html.dart';
import 'package:dartssh/http_io.dart';
import 'package:dartssh/identity.dart';
import 'package:dartssh/kex.dart';
import 'package:dartssh/pem.dart';
import 'package:dartssh/protocol.dart';
import 'package:dartssh/serializable.dart';
import 'package:dartssh/server.dart';
import 'package:dartssh/socket.dart';
import 'package:dartssh/socket_html.dart';
import 'package:dartssh/socket_io.dart';
import 'package:dartssh/ssh.dart';
import 'package:dartssh/transport.dart';
import 'package:dartssh/websocket_html.dart';
import 'package:dartssh/websocket_io.dart';
import 'package:dartssh/zlib.dart';