This is the glass Reference Manual, version 1.0.2, generated automatically by Declt version 4.0 beta 2 "William Riker" on Sun Dec 15 06:17:46 2024 GMT+0.
The main system appears first, followed by any subsystem dependency.
glass
General Lisp Authentication and Security System API.
Frank James <frank.a.james@gmail.com>
MIT
1.0.2
glass.lisp
(file).
errors.lisp
(file).
Files are sorted by type and then listed depth-first from the systems components trees.
glass/glass.lisp
glass
(system).
accept-security-context
(generic function).
acquire-credentials
(generic function).
context-principal-name
(generic function).
get-mic
(generic function).
initialize-security-context
(generic function).
unwrap
(generic function).
verify-mic
(generic function).
wrap
(generic function).
glass/errors.lisp
glass.lisp
(file).
glass
(system).
gss-error
(condition).
*gss-status-codes*
(special variable).
gss-error-major
(reader method).
gss-error-minor
(reader method).
Packages are listed by definition order.
glass
gss
common-lisp
.
accept-security-context
(generic function).
acquire-credentials
(generic function).
context-principal-name
(generic function).
get-mic
(generic function).
gss-error
(condition).
initialize-security-context
(generic function).
unwrap
(generic function).
verify-mic
(generic function).
wrap
(generic function).
*gss-status-codes*
(special variable).
gss-error-major
(generic reader).
gss-error-minor
(generic reader).
Definitions are sorted by export status, category, package, and then by lexicographic order.
For the server to accept a security context from the client.
On the first call to this function, CONTEXT-OR-CREDENTIALS should be a credential object as returned from the initial
call to ACQUIRE-CREDENTIALS. Subsequent calls CONTEXT-OR-CREDENTIALS should be the context returned from the previous call
to this function.
BUFFER is the opaque octet vector sent from the client.
Returns (values context response-buffer continue-needed) where CONTEXT is the context to be used in subsequent calls to this function or other
glass functions. RESPONSE-BUFFER is either an opaque octet vector to be sent back to the client, or nil if the context has been completed.
CONTINUE-NEEDED is a boolean indicating whether further calls to this function are required before authentication has completed.
May signal GSS-ERROR if authentication fails.
Acquire credentials for the principal named. Returns CREDENTIALS, for input into INITIALIZE-SECURITY-CONTEXT and ACCEPT-SECURITY-CONTEXT.
c.f. GSS_Acquire_cred.
MECH-TYPE ::= symbol naming the authentication mechamism.
PRINCIPAL ::= the name of the principal you are requesting credentials for. NIL assumes default.
Returns an opaque credential object to be used in subsequent calls.
Returns a string which represents the name of the principal to which is authenticated by this context. This function should be used by servers wishing to get some information on the identity of the client.
Compute a checksum over the message. C.f. GSS_GetMIC.
MESSAGE ::= octet array containing the plaintext.
Returns an octet array.
Returns a security context to be sent to the application server. c.f. GSS_Init_sec_context.
On the first call CONTEXT-OR-CREDENTIALS should be the result of the initial call to ACQUIRE-CREDENTIALS.
On subsequent calls, CONTEXT-OR-CREDENTIALS should be the context returned from the previous call to INITIALIZE-SECURITY-CONTEXT.
Returns (values context buffer continue-needed) where context is an opaque object to be used in subsequent calls to this or other functions. Buffer
is either an opaque octet-vector, which should be sent to the server, or nil if the context has been completed. Continue needed is
a boolean indicating whether further calls to this function need to made before the authentication is complete.
May signal conditions of type GSS-ERROR.
Decrypt the message. c.f. GSS_Unwrap
BUFFER ::= the wrapped message, as returned by WRAP.
Returns the decrypted plaintext.
Verify the checksum. c.f. GSS_VerifyMIC
MESSAGE ::= octet array containing the original message that was checksum’ed.
MESSAGE-TOKEN ::= the checksum, i.e. result of calling GET-MIC.
Returns T if verified.
Encrypt the message. c.f. GSS_Wrap
MESSAGE ::= octet array containing the plaintext message
Returns an octet array contining the encrypted message.
Jump to: | A C G I M U V W |
---|
Jump to: | A C G I M U V W |
---|
Jump to: | *
M S |
---|
Jump to: | *
M S |
---|
Jump to: | C E F G P S |
---|
Jump to: | C E F G P S |
---|