|
NAMENet::SSL::Handshake::Extensions - Base class for TLS handshake extensions VERSIONVersion 1.0.x, $Revision: 651 $ SYNOPSIS extends "Net::SSL::Handshake::Extensions";
sub BUILD
{
my $self = shift;
$self->add($pack_pattern, @data);
}
DESCRIPTIONThe base class for TLS extensions. Used by each extension Class. For example see Net::SSL::Handshake::Extensions::EllipticCurves or Net::SSL::Handshake::Extensions::ECPointFormats. ->dataReturns the binary string for this extension. ->add($pattern, @data)Adds the data for this extension.
|