GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::NSCA::Client::Connection::TLS(3) User Contributed Perl Documentation Net::NSCA::Client::Connection::TLS(3)

Net::NSCA::Client::Connection::TLS - Represents the transport layer security on a connection.

This documentation refers to version 0.009002

  use Net::NSCA::Client::Connection::TLS;

  # Create a new connection TLS
  my $tls = Net::NSCA::Client::Connection::TLS->new(
    encryption_type => 'xor',
    password        => $my_secret_password,
  );

  # Encrypt a packet
  my $encrypted_packet = $tls->encrypt(
    byte_stream => $data_packet,
    iv          => $iv_salt,
  );

Represents a connection between the NSCA client and server.

This is fully object-oriented, and as such before any method can be used, the constructor needs to be called to create an object to work with.

This will construct a new object.
new(%attributes)
%attributes is a HASH where the keys are attributes (specified in the "ATTRIBUTES" section).
new($attributes)
$attributes is a HASHREF where the keys are attributes (specified in the "ATTRIBUTES" section).

  # Set an attribute
  $object->attribute_name($new_value);

  # Get an attribute
  my $value = $object->attribute_name;

This is the type of encryption for this transport layer security object. This will default to "xor".

This is the password to use for the encryption.

This will encrypt a byte stream according to the attributes of the object. This method takes a HASH of arguments with the following keys:

byte_stream

Required

This is the byte stream to encrypt.

iv

Required

This is the initialization vector to use when encrypting the byte stream.

TODO: Write this

  • Moose 0.89
  • MooseX::StrictConstructor 0.08
  • Net::NSCA::Client::Library
  • namespace::clean 0.04

Douglas Christopher Wilson, "<doug at somethingdoug.com>"

Please report any bugs or feature requests to "bug-net-nsca-client at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-NSCA-Client>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

I highly encourage the submission of bugs and enhancements to my modules.

Copyright 2009 Douglas Christopher Wilson.

This program is free software; you can redistribute it and/or modify it under the terms of either:

  • the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or
  • the Artistic License version 2.0.
2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.