summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Zlatanov <tzz@lifelogs.com>2010-10-03 20:16:00 -0500
committerTed Zlatanov <tzz@lifelogs.com>2010-10-03 20:16:00 -0500
commit8762aa1038c1cabed39b8d442cbc9337f64c1260 (patch)
tree639b89c4ef4d373a528ca64a3224ffab51fe0bf1
parent8cce34d087ea3dee6e8e6f5272dc3b403cf5cd35 (diff)
downloademacs-8762aa1038c1cabed39b8d442cbc9337f64c1260.tar.gz
Provide GnuTLS API with `gnutls-negotiate' and `open-gnutls-stream'.
* net/gnutls.el: Improve docs. Remove starttls and ssl emulation. Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and `gnutls-negotiate' (formerly `starttls-negotiate'). Remove trivial wrapper `starttls-open-stream'.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/net/gnutls.el46
2 files changed, 23 insertions, 30 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 796e7753397..af790a99293 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
+ Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
+ `gnutls-negotiate' (formerly `starttls-negotiate'). Remove
+ trivial wrapper `starttls-open-stream'.
+
2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el
index 3baaad63056..00cdcd8ea9b 100644
--- a/lisp/net/gnutls.el
+++ b/lisp/net/gnutls.el
@@ -1,9 +1,10 @@
-;;; gnutls.el --- Support SSL and TLS connections through GnuTLS
+;;; gnutls.el --- Support SSL/TLS connections through GnuTLS
;; Copyright (C) 2010 Free Software Foundation, Inc.
;; Author: Ted Zlatanov <tzz@lifelogs.com>
;; Keywords: comm, tls, ssl, encryption
;; Originally-By: Simon Josefsson (See http://josefsson.org/emacs-security/)
+;; Thanks-To: Lars Magne Ingebrigtsen <larsi@gnus.org>
;; This file is part of GNU Emacs.
@@ -27,8 +28,8 @@
;; Simple test:
;;
-;; (setq jas (open-ssl-stream "ssl" (current-buffer) "www.pdc.kth.se" 443))
-;; (process-send-string jas "GET /\r\n\r\n")
+;; (open-gnutls-stream "tls" "tls-buffer" "yourserver.com" "https")
+;; (open-gnutls-stream "tls" "tls-buffer" "imap.gmail.com" "imaps")
;;; Code:
@@ -42,8 +43,8 @@
:type 'integer
:group 'gnutls)
-(defun open-ssl-stream (name buffer host service)
- "Open a SSL connection for a service to a host.
+(defun open-gnutls-stream (name buffer host service)
+ "Open a SSL/TLS connection for a service to a host.
Returns a subprocess-object to represent the connection.
Input and output work as for subprocesses; `delete-process' closes it.
Args are NAME BUFFER HOST SERVICE.
@@ -55,15 +56,18 @@ BUFFER is the buffer (or `buffer-name') to associate with the process.
with any buffer
Third arg is name of the host to connect to, or its IP address.
Fourth arg SERVICE is name of the service desired, or an integer
-specifying a port number to connect to."
+specifying a port number to connect to.
+
+This is a very simple wrapper around `gnutls-negotiate'. See its
+documentation for the specific parameters you can use to open a
+GnuTLS connection, including specifying the credential type,
+trust and key files, and priority string."
(let ((proc (open-network-stream name buffer host service)))
- (starttls-negotiate proc 'gnutls-x509pki)))
+ (gnutls-negotiate proc 'gnutls-x509pki)))
-;; (open-ssl-stream "tls" "tls-buffer" "yourserver.com" "https")
-;; (open-ssl-stream "tls" "tls-buffer" "imap.gmail.com" "imaps")
-(defun starttls-negotiate (proc type &optional priority-string
- trustfiles keyfiles)
- "Negotiate a SSL or TLS connection.
+(defun gnutls-negotiate (proc type &optional priority-string
+ trustfiles keyfiles)
+ "Negotiate a SSL/TLS connection.
TYPE is `gnutls-x509pki' (default) or `gnutls-anon'. Use nil for the default.
PROC is a process returned by `open-network-stream'.
PRIORITY-STRING is as per the GnuTLS docs, default is \"NORMAL\".
@@ -91,22 +95,6 @@ KEYFILES is a list of client keys."
proc))
-(defun starttls-open-stream (name buffer host service)
- "Open a TLS connection for a service to a host.
-Returns a subprocess-object to represent the connection.
-Input and output work as for subprocesses; `delete-process' closes it.
-Args are NAME BUFFER HOST SERVICE.
-NAME is name for process. It is modified if necessary to make it unique.
-BUFFER is the buffer (or `buffer-name') to associate with the process.
- Process output goes at end of that buffer, unless you specify
- an output stream or filter function to handle the output.
- BUFFER may be also nil, meaning that this process is not associated
- with any buffer
-Third arg is name of the host to connect to, or its IP address.
-Fourth arg SERVICE is name of the service desired, or an integer
-specifying a port number to connect to."
- (open-network-stream name buffer host service))
-
(defun gnutls-message-maybe (doit format &rest params)
"When DOIT, message with the caller name followed by FORMAT on PARAMS."
;; (apply 'debug format (or params '(nil)))
@@ -116,8 +104,6 @@ specifying a port number to connect to."
doit (gnutls-error-string doit)
(apply 'format format (or params '(nil))))))
-(provide 'ssl)
(provide 'gnutls)
-(provide 'starttls)
;;; gnutls.el ends here