| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This chapter describes the GNU Guile Scheme programming interface to GnuTLS. The reader is assumed to have basic knowledge of the protocol and library. Details missing from this chapter may be found in the C API reference.
At this stage, not all the C functions are available from Scheme, but a large subset thereof is available.
| 11.1 Guile Preparations | Note on installation and environment. | |
| 11.2 Guile API Conventions | Naming conventions and other idiosyncrasies. | |
| 11.3 Guile Examples | Quick start. | |
| 11.4 Guile Reference | The Scheme GnuTLS programming interface. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The GnuTLS Guile bindings are by default installed under the GnuTLS installation directory (e.g., typically `/usr/local/share/guile/site/'). Normally Guile will not find the module there without help. You may experience something like this:
$ guile guile> (use-modules (gnutls)) <unnamed port>: no code for module (gnutls) guile> |
There are two ways to solve this. The first is to make sure that when
building GnuTLS, the Guile bindings will be installed in the same
place where Guile looks. You may do this by using the
--with-guile-site-dir parameter as follows:
$ ./configure --with-guile-site-dir=no |
This will instruct GnuTLS to attempt to install the Guile bindings
where Guile will look for them. It will use guile-config info
pkgdatadir to learn the path to use.
If Guile was installed into /usr, you may also install GnuTLS
using the same prefix:
$ ./configure --prefix=/usr |
If you want to specify the path to install the Guile bindings you can also specify the path directly:
$ ./configure --with-guile-site-dir=/opt/guile/share/guile/site |
The second solution requires some more work but may be easier to use
if you do not have system administrator rights to your machine. You
need to instruct Guile so that it finds the GnuTLS Guile bindings.
Either use the GUILE_LOAD_PATH environment variable as follows:
$ GUILE_LOAD_PATH="/usr/local/share/guile/site:$GUILE_LOAD_PATH" guile guile> (use-modules (gnutls)) guile> |
Alternatively, you can modify Guile's %load-path variable
(see Guile's run-time options: (guile)Build Config section `Build Config' in The GNU Guile Reference Manual).
At this point, you might get an error regarding `libguile-gnutls-v-0' similar to:
gnutls.scm:361:1: In procedure dynamic-link in expression (load-extension "libguile-gnutls-v-0" "scm_init_gnutls"): gnutls.scm:361:1: file: "libguile-gnutls-v-0", message: "libguile-gnutls-v-0.so: cannot open shared object file: No such file or directory" |
In this case, you will need to modify the run-time linker path, for example as follows:
$ LD_LIBRARY_PATH=/usr/local/lib GUILE_LOAD_PATH=/usr/local/share/guile/site guile guile> (use-modules (gnutls)) guile> |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This chapter details the conventions used by Guile API, as well as specificities of the mapping of the C API to Scheme.
| 11.2.1 Enumerates and Constants | Representation of C-side constants. | |
| 11.2.2 Procedure Names | Naming conventions. | |
| 11.2.3 Representation of Binary Data | Binary data buffers. | |
| 11.2.4 Input and Output | Input and output. | |
| 11.2.5 Exception Handling | Exceptions. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Lots of enumerates and constants are used in the GnuTLS C API. For each C enumerate type, a disjoint Scheme type is used--thus, enumerate values and constants are not represented by Scheme symbols nor by integers. This makes it impossible to use an enumerate value of the wrong type on the Scheme side: such errors are automatically detected by type-checking.
The enumerate values are bound to variables exported by the
(gnutls) and (gnutls extra) modules. These variables
are named according to the following convention:
_
character used in the C API is replaced by hyphen -.
Consider for instance this C-side enumerate:
typedef enum
{
GNUTLS_CRD_CERTIFICATE = 1,
GNUTLS_CRD_ANON,
GNUTLS_CRD_SRP,
GNUTLS_CRD_PSK,
GNUTLS_CRD_IA
} gnutls_credentials_type_t;
|
The corresponding Scheme values are bound to the following variables
exported by the (gnutls) module:
credentials/certificate credentials/anonymous credentials/srp credentials/psk credentials/ia |
Hopefully, most variable names can be deduced from this convention.
Scheme-side "enumerate" values can be compared using eq?
(see equality predicates: (guile)Equality section `Equality' in The GNU Guile Reference Manual). Consider the following example:
(let ((session (make-session connection-end/client)))
;;
;; ...
;;
;; Check the ciphering algorithm currently used by SESSION.
(if (eq? cipher/arcfour (session-cipher session))
(format #t "We're using the ARCFOUR algorithm")))
|
In addition, all enumerate values can be converted to a human-readable
string, in a type-specific way. For instance, (cipher->string
cipher/arcfour) yields "ARCFOUR 128", while
(key-usage->string key-usage/digital-signature) yields
"digital-signature". Note that these strings may not be
sufficient for use in a user interface since they are fairly concise
and not internationalized.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Unlike C functions in GnuTLS, the corresponding Scheme procedures are
named in a way that is close to natural English. Abbreviations are
also avoided. For instance, the Scheme procedure corresponding to
gnutls_certificate_set_dh_params is named
set-certificate-credentials-dh-parameters!. The gnutls_
prefix is always omitted from variable names since a similar effect
can be achieved using Guile's nifty binding renaming facilities,
should it be needed (see (guile)Using Guile Modules section `Using Guile Modules' in The GNU Guile Reference Manual).
Often Scheme procedure names differ from C function names in a way
that makes it clearer what objects they operate on. For example, the
Scheme procedure named set-session-transport-port! corresponds
to gnutls_transport_set_ptr, making it clear that this
procedure applies to session.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Many procedures operate on binary data. For instance,
pkcs3-import-dh-parameters expects binary data as input and,
similarly, procedures like pkcs1-export-rsa-parameters return
binary data.
Binary data is represented on the Scheme side using SRFI-4 homogeneous
vectors (see (guile)SRFI-4 section `SRFI-4' in The GNU Guile Reference Manual).
Although any type of homogeneous vector may be used, u8vectors
(i.e., vectors of bytes) are highly recommended.
As an example, generating and then exporting RSA parameters in the PEM format can be done as follows:
(let* ((rsa-params (make-rsa-parameters 1024))
(raw-data
(pkcs1-export-rsa-parameters rsa-params
x509-certificate-format/pem)))
(uniform-vector-write raw-data (open-output-file "some-file.pem")))
|
For an example of OpenPGP key import from a file, see Importing OpenPGP Keys Guile Example.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The underlying transport of a TLS session can be any Scheme
input/output port (see (guile)Ports and File Descriptors section `Ports and File Descriptors' in The GNU Guile Reference Manual). This has to be specified using
set-session-transport-port!.
However, for better performance, a raw file descriptor can be
specified, using set-session-transport-fd!. For instance, if
the transport layer is a socket port over an OS-provided socket, you
can use the port->fdes or fileno procedure to obtain the
underlying file descriptor and pass it to
set-session-transport-fd! (see port->fdes and fileno: (guile)Ports and File Descriptors section `Ports and File Descriptors' in The GNU Guile Reference Manual). This would work as follows:
(let ((socket (socket PF_INET SOCK_STREAM 0))
(session (make-session connection-end/client)))
;;
;; Establish a TCP connection...
;;
;; Use the file descriptor that underlies SOCKET.
(set-session-transport-fd! session (fileno socket)))
|
Once a TLS session is established, data can be communicated through it
(i.e., via the TLS record layer) using the port returned by
session-record-port:
(let ((session (make-session connection-end/client)))
;;
;; Initialize the various parameters of SESSION, set up
;; a network connection, etc...
;;
(let ((i/o (session-record-port session)))
(write "Hello peer!" i/o)
(let ((greetings (read i/o)))
;; ...
(bye session close-request/rdwr))))
|
A lower-level I/O API is provided by record-send and
record-receive! which take an SRFI-4 vector to represent the
data sent or received. While it might improve performance, it is much
less convenient than the above and should rarely be needed.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
GnuTLS errors are implemented as Scheme exceptions (see exceptions in Guile: (guile)Exceptions section `Exceptions' in The GNU Guile Reference Manual). Each
time a GnuTLS function returns an error, an exception with key
gnutls-error is raised. The additional arguments that are
thrown include an error code and the name of the GnuTLS procedure that
raised the exception. The error code is pretty much like an enumerate
value: it is one of the errcode> variables exported by the
(gnutls) module (see section Enumerates and Constants). Exceptions
can be turned into error messages using the error->string
procedure.
The following examples illustrates how GnuTLS exceptions can be handled:
(let ((session (make-session connection-end/server)))
;;
;; ...
;;
(catch 'gnutls-error
(lambda ()
(handshake session))
(lambda (key err function . currently-unused)
(format (current-error-port)
"a GnuTLS error was raised by `~a': ~a~%"
function (error->string err)))))
|
Again, error values can be compared using eq?:
;; `gnutls-error' handler.
(lambda (key err function . currently-unused)
(if (eq? err error/fatal-alert-received)
(format (current-error-port)
"a fatal alert was caught!~%")
(format (current-error-port)
"something bad happened: ~a~%"
(error->string err))))
|
Note that the catch handler is currently passed only 3
arguments but future versions might provide it with additional
arguments. Thus, it must be prepared to handle more than 3 arguments,
as in this example.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This chapter provides examples that illustrate common use cases.
| 11.3.1 Anonymous Authentication Guile Example | Simplest client and server. | |
| 11.3.2 OpenPGP Authentication Guile Example | Using OpenPGP-based authentication. | |
| 11.3.3 Importing OpenPGP Keys Guile Example | Importing keys from files. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Anonymous authentication is very easy to use. No certificates are needed by the communicating parties. Yet, it allows them to benefit from end-to-end encryption and integrity checks.
The client-side code would look like this (assuming some-socket is bound to an open socket port):
;; Client-side.
(let ((client (make-session connection-end/client)))
;; Use the default settings.
(set-session-default-priority! client)
;; Don't use certificate-based authentication.
(set-session-certificate-type-priority! client '())
;; Request the "anonymous Diffie-Hellman" key exchange method.
(set-session-kx-priority! client (list kx/anon-dh))
;; Specify the underlying socket.
(set-session-transport-fd! client (fileno some-socket))
;; Create anonymous credentials.
(set-session-credentials! client
(make-anonymous-client-credentials))
;; Perform the TLS handshake with the server.
(handshake client)
;; Send data over the TLS record layer.
(write "hello, world!" (session-record-port client))
;; Terminate the TLS session.
(bye client close-request/rdwr))
|
The corresponding server would look like this (again, assuming some-socket is bound to a socket port):
;; Server-side.
(let ((server (make-session connection-end/server)))
(set-session-default-priority! server)
(set-session-certificate-type-priority! server '())
(set-session-kx-priority! server (list kx/anon-dh))
;; Specify the underlying transport socket.
(set-session-transport-fd! server (fileno some-socket))
;; Create anonymous credentials.
(let ((cred (make-anonymous-server-credentials))
(dh-params (make-dh-parameters 1024)))
;; Note: DH parameter generation can take some time.
(set-anonymous-server-dh-parameters! cred dh-params)
(set-session-credentials! server cred))
;; Perform the TLS handshake with the client.
(handshake server)
;; Receive data over the TLS record layer.
(let ((message (read (session-record-port server))))
(format #t "received the following message: ~a~%"
message)
(bye server close-request/rdwr)))
|
This is it!
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
GnuTLS allows users to authenticate using OpenPGP certificates. The
relevant procedures are provided by the (gnutls extra) module.
Using OpenPGP-based authentication is not more complicated than using
anonymous authentication. It requires a bit of extra work, though, to
import the OpenPGP public and private key of the client/server. Key
import is omitted here and is left as an exercise to the reader
(see section Importing OpenPGP Keys Guile Example).
Assuming some-socket is bound to an open socket port and pub and sec are bound to the client's OpenPGP public and secret key, respectively, client-side code would look like this:
;; Client-side.
(define %certs (list certificate-type/openpgp))
(let ((client (make-session connection-end/client))
(cred (make-certificate-credentials)))
(set-session-default-priority! client)
;; Choose OpenPGP certificates.
(set-session-certificate-type-priority! client %certs)
;; Prepare appropriate client credentials.
(set-certificate-credentials-openpgp-keys! cred pub sec)
(set-session-credentials! client cred)
;; Specify the underlying transport socket.
(set-session-transport-fd! client (fileno some-socket))
(handshake client)
(write "hello, world!" (session-record-port client))
(bye client close-request/rdwr))
|
Similarly, server-side code would be along these lines:
;; Server-side.
(define %certs (list certificate-type/openpgp))
(let ((server (make-session connection-end/server))
(rsa (make-rsa-parameters 1024))
(dh (make-dh-parameters 1024)))
(set-session-default-priority! server)
;; Choose OpenPGP certificates.
(set-session-certificate-type-priority! server %certs)
(let ((cred (make-certificate-credentials)))
;; Prepare credentials with RSA and Diffie-Hellman parameters.
(set-certificate-credentials-dh-parameters! cred dh)
(set-certificate-credentials-rsa-export-parameters! cred rsa)
(set-certificate-credentials-openpgp-keys! cred pub sec)
(set-session-credentials! server cred))
(set-session-transport-fd! server (fileno some-socket))
(handshake server)
(let ((msg (read (session-record-port server))))
(format #t "received: ~a~%" msg)
(bye server close-request/rdwr)))
|
In practice, generating RSA parameters (and Diffie-Hellman parameters)
can time a long time. Thus, you may want to generate them once and
store them in a file for future re-use (see section pkcs1-export-rsa-parameters and pkcs1-import-rsa-parameters).
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following example provides a simple way of importing
"ASCII-armored" OpenPGP keys from files, using the
import-openpgp-certificate and import-openpgp-private-key
procedures provided by the (gnutls extra) module.
(use-modules (srfi srfi-4)
(gnutls extra))
(define (import-key-from-file import-proc file)
;; Import OpenPGP key from FILE using IMPORT-PROC.
;; Prepare a u8vector large enough to hold the raw
;; key contents.
(let* ((size (stat:size (stat path)))
(raw (make-u8vector size)))
;; Fill in the u8vector with the contents of FILE.
(uniform-vector-read! raw (open-input-file file))
;; Pass the u8vector to the import procedure.
(import-proc raw openpgp-certificate-format/base64)))
(define (import-public-key-from-file file)
(import-key-from-file import-openpgp-certificate file))
(define (import-private-key-from-file file)
(import-key-from-file import-openpgp-private-key file))
|
The procedures import-public-key-from-file and
import-private-key-from-file can be passed a file name. They
return an OpenPGP public key and private key object, respectively
(see section OpenPGP key objects).
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This chapter documents GnuTLS Scheme procedures available to Guile programmers.
| 11.4.1 Core Interface | Bindings for core GnuTLS. | |
| 11.4.2 Extra Interface | Bindings for GnuTLS-Extra. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This section lists the Scheme procedures exported by the
(gnutls) module (see (guile)The Guile module system section `The Guile module system' in The GNU Guile Reference Manual). This module is licenced under the GNU
Lesser General Public Licence, version 2.1 or later.
Enable GnuTLS logging up to level (an integer).
Use proc (a two-argument procedure) as the global GnuTLS log procedure.
Return two values: the alternative name type for cert (i.e., one of the x509-subject-alternative-nacode> values) and the actual subject alternative name (a string) at index. Both values are #f if no alternative name is available at index.
Return the subject key ID (a u8vector) for cert.
Return the key ID (a u8vector) of the X.509 certificate authority of cert.
Return a statistically unique ID (a u8vector) for cert that depends on its public key parameters. This is normally a 20-byte SHA-1 hash.
Return the version of cert.
Return the key usage of cert (i.e., a list of key-usacode> values), or the empty list if cert does not contain such information.
Return two values: the public key algorithm (i.e., one of the pk-algoritcode> values) of cert and the number of bits used.
Return the signature algorithm used by cert (i.e., one of the sign-algoritcode> values).
Return true if cert matches hostname, a string denoting a DNS host name. This is the basic implementation of RFC 2818 (aka. HTTPS).
Return the OID (a string) at index from cert's issuer DN. Return #f if no OID is available at index.
Return OID (a string) at index from cert. Return #f if no OID is available at index.
Return the distinguished name (DN) of X.509 certificate cert.
Return the distinguished name (DN) of X.509 certificate cert. The form of the DN is as described in RFC 2253.
Return a new X.509 private key object resulting from the import of data (a uniform array) according to format. Optionally, if pass is not #f, it should be a string denoting a passphrase. encrypted tells whether the private key is encrypted (#t by default).
Return a new X.509 private key object resulting from the import of data (a uniform array) according to format.
Return a new X.509 certificate object resulting from the import of data (a uniform array) according to format.
Return the username associated with PSK server session session.
Set the client credentials for cred, a PSK client credentials object.
Return a new PSK client credentials object.
Use file as the password file for PSK server credentials cred.
Return new PSK server credentials.
Verify the peer certificate for session and return a list of certificate-status values (such as certificate-status/revoked), or the empty list if the certificate is valid.
Set the certificate verification flags to flags, a series of certificate-verify values.
Set the verification limits of peer-certificate-status for certificate credentials cred to max_bits bits for an acceptable certificate and max_depth as the maximum depth of a certificate chain.
Have certificate credentials cred use the X.509 certificates listed in certs and X.509 private key privkey.
Use X.509 certificate cert and private key key, both uniform arrays containing the X.509 certificate and key in format format, for certificate credentials cred.
Use data (a uniform array) as the X.509 CRL (certificate revocation list) database for cred. On success, return the number of CRLs processed.
Use data (a uniform array) as the X.509 trust database for cred. On success, return the number of certificates processed.
Use file as the X.509 CRL (certificate revocation list) file for certificate credentials cred. On success, return the number of CRLs processed.
Use file as the X.509 trust file for certificate credentials cred. On success, return the number of certificates processed.
Use file as the password file for PSK server credentials cred.
Use RSA parameters rsa_params for certificate credentials cred.
Use Diffie-Hellman parameters dh_params for certificate credentials cred.
Return new certificate credentials (i.e., for use with either X.509 or OpenPGP certificates.
Export Diffie-Hellman parameters rsa_params in PKCS1 format according for format (an x509-certificate-format value). Return a u8vector containing the result.
Import Diffie-Hellman parameters in PKCS1 format (further specified by format, an x509-certificate-format value) from array (a homogeneous array) and return a new rsa-params object.
Return new RSA parameters.
Set the Diffie-Hellman parameters of anonymous server credentials cred.
Return anonymous client credentials.
Return anonymous server credentials.
Use bits DH prime bits for session.
Export Diffie-Hellman parameters dh_params in PKCS3 format according for format (an x509-certificate-format value). Return a u8vector containing the result.
Import Diffie-Hellman parameters in PKCS3 format (further specified by format, an x509-certificate-format value) from array (a homogeneous array) and return a new dh-params object.
Return new Diffie-Hellman parameters.
Use port as the input/output port for session.
Use file descriptor fd as the underlying transport for session.
Return a read-write port that may be used to communicate over session. All invocations of session-port on a given session return the same object (in the sense of eq?).
Receive data from session into array, a uniform homogeneous array. Return the number of bytes actually received.
Send the record constituted by array through session.
Use cred as session's credentials.
Return the name of the given cipher suite.
Have session use the default export priorities.
Have session use the default priorities.
Use items (a list) as the list of preferred certificate-type for session.
Use items (a list) as the list of preferred protocol for session.
Use items (a list) as the list of preferred kx for session.
Use items (a list) as the list of preferred compression-method for session.
Use items (a list) as the list of preferred mac for session.
Use items (a list) as the list of preferred cipher for session.
Tell how session, a server-side session, should deal with certificate requests. request should be either certificate-request/request or certificate-request/require.
Return our certificate chain for session (as sent to the peer) in raw format (a u8vector). In the case of OpenPGP there is exactly one certificate. Return the empty list if no certificate was used.
Return the a list of certificates in raw format (u8vectors) where the first one is the peer's certificate. In the case of OpenPGP, there is always exactly one certificate. In the case of X.509, subsequent certificates indicate form a certificate chain. Return the empty list if no certificate was sent.
Return the client authentication type (a credential-type value) used in session.
Return the server authentication type (a credential-type value) used in session.
Return the authentication type (a credential-type value) used by session.
Return the protocol used by session.
Return session's certificate type.
Return session's compression method.
Return session's MAC.
Return session's kx.
Return session's cipher.
Send alert via session.
Get an aleter from session.
Perform a re-handshaking for session.
Perform a handshake for session.
Close session according to how.
Return a new session for connection end end, either connection-end/server or connection-end/client.
Return a string denoting the version number of the underlying GnuTLS library, e.g., "1.7.2".
Return true if obj is of type x509-private-key.
Return true if obj is of type x509-certificate.
Return true if obj is of type psk-client-credentials.
Return true if obj is of type psk-server-credentials.
Return true if obj is of type srp-client-credentials.
Return true if obj is of type srp-server-credentials.
Return true if obj is of type certificate-credentials.
Return true if obj is of type rsa-parameters.
Return true if obj is of type dh-parameters.
Return true if obj is of type anonymous-server-credentials.
Return true if obj is of type anonymous-client-credentials.
Return true if obj is of type session.
Return a string describing enumval, a error value.
Return a string describing enumval, a certificate-verify value.
Return a string describing enumval, a key-usage value.
Return a string describing enumval, a psk-key-format value.
Return a string describing enumval, a sign-algorithm value.
Return a string describing enumval, a pk-algorithm value.
Return a string describing enumval, a x509-subject-alternative-name value.
Return a string describing enumval, a x509-certificate-format value.
Return a string describing enumval, a certificate-type value.
Return a string describing enumval, a protocol value.
Return a string describing enumval, a close-request value.
Return a string describing enumval, a certificate-request value.
Return a string describing enumval, a certificate-status value.
Return a string describing enumval, a handshake-description value.
Return a string describing enumval, a alert-description value.
Return a string describing enumval, a alert-level value.
Return a string describing enumval, a connection-end value.
Return a string describing enumval, a compression-method value.
Return a string describing enumval, a digest value.
Return a string describing enumval, a mac value.
Return a string describing enumval, a credentials value.
Return a string describing enumval, a params value.
Return a string describing enumval, a kx value.
Return a string describing enumval, a cipher value.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This section lists the Scheme procedures exported by the (gnutls
extra) module. This module is licenced under the GNU General Public
Licence, version 3 or later.
Use certificate pub and secret key sec in certificate credentials cred.
Return #f if key ID id is in keyring, #f otherwise.
Import data (a u8vector) according to format and return the imported keyring.
Return a list of values denoting the key usage of key.
Return the version of the OpenPGP message format (RFC2440) honored by key.
Return two values: the certificate algorithm used by key and the number of bits used.
Return the list of names for key.
Return the indexth name of key.
Return a new u8vector denoting the fingerprint of key.
Store in fpr (a u8vector) the fingerprint of key. Return the number of bytes stored in fpr.
Store the ID (an 8 byte sequence) of certificate key in id (a u8vector).
Return the ID (an 8-element u8vector) of certificate key.
Return a new OpenPGP private key object resulting from the import of data (a uniform array) according to format. Optionally, a passphrase may be provided.
Return a new OpenPGP certificate object resulting from the import of data (a uniform array) according to format.
Return a string describing enumval, a openpgp-certificate-format value.
Return true if obj is of type openpgp-keyring.
Return true if obj is of type openpgp-private-key.
Return true if obj is of type openpgp-certificate.
| [ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This document was generated on July, 20 2009 using texi2html 1.76.