NAME
Net::NSS::SSL - SSL sockets using NSS
SYNOPSIS
INTERFACE
CLASS METHODS
Creating sockets
The prefered way of creating sockets is by using the new
constructor. This creates this socket, sets the desired options, imports it into SSL layer and connects to the peer host, or binds and sets up a listening socket, in the correct order. If you need more control it's possible to create a new socket using create_socket
which in turn must be SSL enabled by calling import_into_ssl_layer
before connecting or listening.
- new ( $address : string, %args ) : Net::NSS::SSL
- new ( %args ) : Net::NSS::SSL
-
Creates a new socket, sets it up correctly, imports it into NSS SSL layer and optionally if it's a client-side socket connect to the remote host.
- PeerAddr : string
-
The peer to connect to in form of
<host
>,<host
:<port>> or<host
:<service>> where host is either an IP number or a hostname, port a integer in the range 1-65535. If a service is specified such ashttp
orftp
, its port number is looked up usinggetservbyname
with the prototcp
. - PeerPort : string | integer
-
The numerical port or a service name to connect to. If PeerAddr is specified it may take precedence over this.
- PeerHost : string
-
The host to connect to as either an IP number or a hostname. If PeerAddr is specified is may take precedence over this.
- Connect : boolean
-
If true then create the socket, import it into SSL, set the specfied options but don't connect. Defaults to false if omitted.
- KeepAlive : boolean
-
Periodically test whether connection is still alive. Default to false if omitted.
- Blocking : boolean
-
Blocking or non-blocking I/O. Default to 1 if omitted or what the class method
blocking
returns if such exists. - SSL_PKCS11_PinArg : scalar
-
Sets the PKCS11 pin arg that is sent along to various funcions for the socket.
See also: "set_pkcs11_pin_arg" in Net::NSS::SSL
- SSL_ClientCertHook : coderef | string
-
Sets the client certificte hook for the socket. If ommited defaults $DefaultClientCertHook if one is defined.
- SSL_ClientCertHookArg : scalar
-
Sets the client certificate hook argument for the socket. If ommited defaults to $DefaultClientCertHookArg if defined.
- SSL_CertVerifyHook : coderef | string
-
Sets the hook that is called to verify the certificate. If ommited defaults to $DefaultVerifyCertHook if one is defined.
- SSL_EnableOptions : arrayref
-
A list of options to enable where the items are either numeric or a constant name from
Crypt::NSS::SSL::Constants
. - SSL_DisableOptions : arrayref
-
A list of options to enable where the items are either numeric or a constant name from
Crypt::NSS::SSL::Constants
. - SSL_URL : string
-
Sets the host/URL that the server certificate will be verified against. If ommited defaults to $DefaultURL if defined, otherwise uses PeerHost.
- create_socket ( $type : string ) : Net::NSS::SSL
-
Creates a new socket of the TYPE
tcp
orudp
. Does not set any socket options nor imports it into the SSL layer. You probablly want to usenew
instead of this method. - import_into_ssl_layer ( )
-
Imports the socket into NSS SSL layer if not already done. The constructor
new
does this automatically for you.
INSTANCE METHODS
Connecting to a host
This is done for you if you use new
.
- connect ( $host : string, $port : integer )
- connect ( $host : string, $port : integer, $timeout : integer)
-
Conencts to the host, $host, on the given $port. The optional argument $timeout sets how many seconds connect has to complete the connection setup. If ommited
PR_INTERVAL_NO_TIMEOUT
is used.
Listening and accepting incoming connections
You don't need to bind and listen if you use new
to create your socket.
- bind ( $host : string, $port : integer )
-
Binds an the socket to a network address, ie host + port.
- listen ( ) =item listen ( $queue_length : integer )
-
Listens for connections on the socket. The optional argument $queue_length is the maximum length of the queue of pending connections. Defaults to 10.
- configure_as_server ( $certificate : Crypt::NSS::Certificate, $private_key : Crypt::NSS::PrivateKey )
-
Configures a listening socket with the information needed to handshake as a SSL server.
- accept ( ) : Net::NSS::SSL =item accept ( $timeout : integer ) : Net::NSS::SSL
-
Accepts a connection on the socket and returns the new socket used to communicate with the connected client. The optional argument $timeout specified determined how long the connection setup might take. If ommited
PR_INTERVAL_NO_TIMEOUT
is used.This method blocks the calling thread until either a new connection is successfully accepted or an error occurs.
Handshaking
- reset_handshake ( $as_server : boolean )
-
Tells the the SSL library to start over with the handshake at the next I/O operation. This is not necessary for sockets that are already SSL:ed. The argument $as_server tells whether the socket should handshake as server or client.
Socket settings and security options
- set_option ( $option : string | integer, $value : scalar )
- get_option ( $option : string | integer ) : scalar
-
Gets and sets socket options. The following options are valid:
- KeepAlive : boolean
-
Periodically test whether connection is still alive.
- NoDelay : boolean
-
Disable Nagle algorithm. Don't delay send to coalesce packets.
- Blocking : boolean
-
Do blocking or non-blocking (network) I/O.
This method also works with SSL options if passed a numeric argument as exported by
Crypt::NSS::Constants qw(:ssl)
and passing eitherSSL_OPTION_ENABLED
orSSL_OPTION_DISABLED
as the value. - set_pkcs11_pin_arg ( $arg : scalar )
- get_pkcs11_pin_arg ( ) : scalar
-
Sets or gets the argument that is passed along to pkcs11 callbacks for the given socket. $arg can be any Perl scalar but in most cases you'll just want this to be a string.
The default password callback ("set_password_hook" in Crypt::NSS::PKCS11), returns this value.
- set_URL ( $host : string )
- get_URL ( ) : string
-
Set or get the domain name of the host we connect to (or actually what the CN in the servers certificate says). This is used in handshaking and if not matching the handshake will fail.
- set_verify_certificate_hook ( $hook : coderef | string )
-
Sets a custom hook to verify an incoming certificate. The hook is passed the
Net::NSS::SSL
-object that the hook is registered on, a boolean indicating whether signature should be checked and a boolean indicating if the certificate should be verified as a server (if true) or as a client (if false). The hook can obtain the certificate to be verified by callingpeer_certificate
on the passedNet::NSS::SSL
-object.To indicate that verification was ok the hook must return
SEC_SUCCESS
, orSEC_FAILURE
if not. Both constants are exported by requesting the tag:sec
fromCrypt::NSS::Constants
.If not set, NSS uses a default hook that does the right thing in most cases. If you've replaced this with your own reverting to the built-in can be done by passing
undef
to this method.Example:
sub my_verify_certificate_hook { my ($self, $check_signature, $is_server) = @_; my $cert = $self->peer_certificate(): return SEC_SUCCESS; }
If you pass
built-in-ignore
as the name we use a hook that never verifies the cert. - set_bad_certificate_hook ( $hook : coderef | string )
-
Sets a custom hook that is called when certficate authentication (the callback specified above) fails.
- set_client_certificate_hook ( $hook : coderef | string )
- set_client_certificate_hook ( $hook : coderef | string, $arg : scalar )
-
Sets a custom hook that is called when a server requests a certificate for authentication. The hook is passed the
Net::NSS::SSL
-object that is the subject of the authentication request and an array reference containing the names of the CAs the server accepts and optionally the nickname (or data) specified. The hook must return a 2-element list containing: 1) ACrypt::NSS::Certificate
-object representing the authentication certificate and 2) aCrypt::NSS::PrivateKey
-object representing the certificates private key.By default no hook is set and one must be provided if your client application is to support client authentication.
NSS provides a built-in hook that should be sufficient in most cases - if $arg is set to a string it uses that as a nickname find the right cert and key otherwise it scans the database for a match. To use the built-in hook pass
"built-in"
as the hook argument.If you're using
new
to construct the socket you can declare your callback using the keyClientAuthHook
.
Getting security info
- peer_certificate ( ) : Crypt::NSS::Certificate
- get_peer_certificate ( ) : Crypt::NSS::Certificate;
-
Returns the certificate recived from the remote end of the connection. If we're a client that means we get the servers certificate and if we're the server we get the clients authentication certificate (if used).
- keysize () : integer
- get_keysize () : integer
-
Returns the length (in bits) of the key used in the session.
- secret_keysize ( ) : integer
- get_secret_keysize ( ) : integer
-
Returns the length (in bits) of the secret part in the key used in the session. Also known as effective key size.
- issuer ( ) : string
- get_issuer ( ) : string
-
Returns the distinguished name of issuer for the certificate on the other side. Returns
no certificate
if no certificate is used. - cipher ( ) : string
- get_cipher ( ) : string
-
Returns the name of the cipher used in the session.
- subject ( ) : string
- get_subject ( ) : string
-
Returns the distinguished name of the certificate on the other side.
Getting socket info
- available ( ) : integer
-
Returns the number of bytes of undecrypted data available for read. This might not be the same amount when read.
- peerhost ( ) : string
-
Returns the host of the remote side.
- peerport ( ) : integer
-
Returns the port on the remote side.
- sockhost ( ) : string
-
Returns the host on the local side.
- sockport ( ) : integer
-
Returns the port on the local side.
- is_connected ( ) : boolean
-
Returns true if the socket is connected to a peer or false if it's not.
- does_ssl ( ) : boolean
-
Returns true if the sockets has been imported into the SSL layer or false if it has not.
Reading and writing
- read ( $target : scalar ) : integer
- read ( $target : scalar, $length : integer ) : integer
- read ( $target : scalar, $length : integer, $offset : integer ) : integer
- sysread ( $target : scalar ) : integer
- sysread ( $target : scalar, $length : integer ) : integer
- sysread ( $target : scalar, $length : integer, $offset : integer ) : integer
-
Reads data the scalar passed as $target 8192 bytes at the time or $length. Returns the actual number of bytes read or 0 if we've reached EOF.
If $offset is specified the data will not be placed at the beginning of $target but at the specified offset.
This method is blocking.
- write ( $data : string ) : integer
- write ( $data : string, $length : integer ) : integer
- write ( $data : string, $length : integer, $offset : integer ) : integer
- syswrite ( $data : string ) : integer
- syswrite ( $data : string, $length : integer ) : integer
- syswrite ( $data : string, $length : integer, $offset : integer ) : integer
-
Writes the contents of $data to the socket and returns the number of bytes actually written.