1SASL::XGoogleTokeSni(mnp)le Authentication and Security Layer (SSAASSLL:):XGoogleToken(n)
2
3
4
5______________________________________________________________________________
6
8 SASL::XGoogleToken - Implementation of SASL NTLM mechanism for Tcl
9
11 package require Tcl 8.2
12
13 package require SASL::XGoogleToken ?1.0.1?
14
15______________________________________________________________________________
16
18 This package provides the XGoogleToken authentication mechanism for the
19 Simple Authentication and Security Layer (SASL).
20
21 Please read the documentation for package sasl for details.
22
24 This package uses the TLS package to handle the security for https urls
25 and other socket connections.
26
27 Policy decisions like the set of protocols to support and what ciphers
28 to use are not the responsibility of TLS, nor of this package itself
29 however. Such decisions are the responsibility of whichever applica‐
30 tion is using the package, and are likely influenced by the set of
31 servers the application will talk to as well.
32
33 For example, in light of the recent POODLE attack [http://googleonli‐
34 nesecurity.blogspot.co.uk/2014/10/this-poodle-bites-exploiting-
35 ssl-30.html] discovered by Google many servers will disable support for
36 the SSLv3 protocol. To handle this change the applications using TLS
37 must be patched, and not this package, nor TLS itself. Such a patch
38 may be as simple as generally activating tls1 support, as shown in the
39 example below.
40
41
42 package require tls
43 tls::init -tls1 1 ;# forcibly activate support for the TLS1 protocol
44
45 ... your own application code ...
46
47
49 Pat Thoyts
50
52 This document, and the package it describes, will undoubtedly contain
53 bugs and other problems. Please report such in the category sasl of
54 the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please
55 also report any ideas for enhancements you may have for either package
56 and/or documentation.
57
58 When proposing code changes, please provide unified diffs, i.e the out‐
59 put of diff -u.
60
61 Note further that attachments are strongly preferred over inlined
62 patches. Attachments can be made by going to the Edit form of the
63 ticket immediately after its creation, and then using the left-most
64 button in the secondary navigation bar.
65
67 SASL, XGoogleToken, authentication
68
70 Networking
71
73 Copyright (c) 2006, Pat Thoyts <patthoyts@users.sourceforge.net>
74
75
76
77
78tcllib 1.0.1 SASL::XGoogleToken(n)