home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1508.txt < prev    next >
Text File  |  1996-05-07  |  113KB  |  1,425 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                            J. Linn Request for Comments: 1508                         Geer Zolot Associates                                                           September 1993 
  8.  
  9.           Generic Security Service Application Program Interface 
  10.  
  11. Status of this Memo 
  12.  
  13.    This RFC specifies an Internet standards track protocol for the    Internet community, and requests discussion and suggestions for    improvements.  Please refer to the current edition of the "Internet    Official Protocol Standards" for the standardization state and status    of this protocol.  Distribution of this memo is unlimited. 
  14.  
  15. Abstract 
  16.  
  17.    This Generic Security Service Application Program Interface (GSS-API)    definition provides security services to callers in a generic    fashion, supportable with a range of underlying mechanisms and    technologies and hence allowing source-level portability of    applications to different environments. This specification defines    GSS-API services and primitives at a level independent of underlying    mechanism and programming language environment, and is to be    complemented by other, related specifications: 
  18.  
  19.         documents defining specific parameter bindings for particular         language environments 
  20.  
  21.         documents defining token formats, protocols, and procedures to         be implemented in order to realize GSS-API services atop         particular security mechanisms 
  22.  
  23. Table of Contents 
  24.  
  25.    1. GSS-API Characteristics and Concepts .......................    2    1.1. GSS-API Constructs .......................................    5    1.1.1.  Credentials ...........................................    5    1.1.2.  Tokens ................................................    6    1.1.3.  Security Contexts .....................................    7    1.1.4.  Mechanism Types .......................................    8    1.1.5.  Naming ................................................    9    1.1.6.  Channel Bindings ......................................   10    1.2.  GSS-API Features and Issues .............................   11    1.2.1.  Status Reporting ......................................   11    1.2.2.  Per-Message Security Service Availability .............   12    1.2.3.  Per-Message Replay Detection and Sequencing ...........   13    1.2.4.  Quality of Protection .................................   15 
  26.  
  27.  
  28.  
  29. Linn                                                            [Page 1] 
  30.  RFC 1508               Generic Security Interface         September 1993 
  31.  
  32.     2. Interface Descriptions .....................................   15    2.1.  Credential management calls .............................   17    2.1.1.  GSS_Acquire_cred call .................................   17    2.1.2.  GSS_Release_cred call .................................   19    2.1.3.  GSS_Inquire_cred call .................................   20    2.2.  Context-level calls .....................................   21    2.2.1.  GSS_Init_sec_context call .............................   21    2.2.2.  GSS_Accept_sec_context call ...........................   26    2.2.3.  GSS_Delete_sec_context call ...........................   29    2.2.4.  GSS_Process_context_token call ........................   30    2.2.5.  GSS_Context_time call .................................   31    2.3.  Per-message calls .......................................   32    2.3.1.  GSS_Sign call .........................................   32    2.3.2.  GSS_Verify call .......................................   33    2.3.3.  GSS_Seal call .........................................   35    2.3.4.  GSS_Unseal call .......................................   36    2.4.  Support calls ...........................................   37    2.4.1.  GSS_Display_status call ...............................   37    2.4.2.  GSS_Indicate_mechs call ...............................   38    2.4.3.  GSS_Compare_name call .................................   38    2.4.4.  GSS_Display_name call .................................   39    2.4.5.  GSS_Import_name call ..................................   40    2.4.6.  GSS_Release_name call .................................   41    2.4.7.  GSS_Release_buffer call ...............................   41    2.4.8.  GSS_Release_oid_set call ..............................   42    3. Mechanism-Specific Example Scenarios .......................   42    3.1.  Kerberos V5, single-TGT .................................   43    3.2.  Kerberos V5, double-TGT .................................   43    3.3.  X.509 Authentication Framework ..........................   44    4. Related Activities .........................................   45    5. Acknowledgments ............................................   46    6. Security Considerations ....................................   46    7. Author's Address ...........................................   46    Appendix A ....................................................   47    Appendix B ....................................................   48    Appendix C ....................................................   49 
  33.  
  34. 1. GSS-API Characteristics and Concepts 
  35.  
  36.    The operational paradigm in which GSS-API operates is as follows. A    typical GSS-API caller is itself a communications protocol, calling    on GSS-API in order to protect its communications with    authentication, integrity, and/or confidentiality security services.    A GSS-API caller accepts tokens provided to it by its local GSS-API    implementation and transfers the tokens to a peer on a remote system;    that peer passes the received tokens to its local GSS-API    implementation for processing. The security services available    through GSS-API in this fashion are implementable (and have been 
  37.  
  38.  
  39.  
  40. Linn                                                            [Page 2] 
  41.  RFC 1508               Generic Security Interface         September 1993 
  42.  
  43.     implemented) over a range of underlying mechanisms based on secret-    key and public-key cryptographic technologies. 
  44.  
  45.    The GSS-API separates the operations of initializing a security    context between peers, achieving peer entity authentication (This    security service definition, and other definitions used in this    document, corresponds to that provided in International Standard ISO    7498-2-1988(E), Security Architecture.) (GSS_Init_sec_context() and    GSS_Accept_sec_context() calls), from the operations of providing    per-message data origin authentication and data integrity protection    (GSS_Sign() and GSS_Verify() calls) for messages subsequently    transferred in conjunction with that context. Per-message GSS_Seal()    and GSS_Unseal() calls provide the data origin authentication and    data integrity services which GSS_Sign() and GSS_Verify() offer, and    also support selection of confidentiality services as a caller    option.  Additional calls provide supportive functions to the GSS-    API's users. 
  46.  
  47.    The following paragraphs provide an example illustrating the    dataflows involved in use of the GSS-API by a client and server in a    mechanism-independent fashion, establishing a security context and    transferring a protected message. The example assumes that credential    acquisition has already been completed.  The example assumes that the    underlying authentication technology is capable of authenticating a    client to a server using elements carried within a single token, and    of authenticating the server to the client (mutual authentication)    with a single returned token; this assumption holds for presently-    documented CAT mechanisms but is not necessarily true for other    cryptographic technologies and associated protocols. 
  48.  
  49.    The client calls GSS_Init_sec_context()  to establish a security    context to the server identified by targ_name, and elects to set the    mutual_req_flag so that mutual authentication is performed in the    course of context establishment. GSS_Init_sec_context()  returns an    output_token to be passed to the server, and indicates    GSS_CONTINUE_NEEDED status pending completion of the mutual    authentication sequence. Had mutual_req_flag not been set, the    initial call to GSS_Init_sec_context()  would have returned    GSS_COMPLETE status. The client sends the output_token to the server. 
  50.  
  51.    The server passes the received token as the input_token parameter to    GSS_Accept_sec_context().  GSS_Accept_sec_context indicates    GSS_COMPLETE status, provides the client's authenticated identity in    the src_name result, and provides an output_token to be passed to the    client. The server sends the output_token to the client. 
  52.  
  53.    The client passes the received token as the input_token parameter to    a successor call to GSS_Init_sec_context(),  which processes data 
  54.  
  55.  
  56.  
  57. Linn                                                            [Page 3] 
  58.  RFC 1508               Generic Security Interface         September 1993 
  59.  
  60.     included in the token in order to achieve mutual authentication from    the client's viewpoint. This call to GSS_Init_sec_context()  returns    GSS_COMPLETE status, indicating successful mutual authentication and    the completion of context establishment for this example. 
  61.  
  62.    The client generates a data message and passes it to GSS_Seal().    GSS_Seal() performs data origin authentication, data integrity, and    (optionally) confidentiality processing on the message and    encapsulates the result into output_message, indicating GSS_COMPLETE    status. The client sends the output_message to the server. 
  63.  
  64.    The server passes the received message to GSS_Unseal().  GSS_Unseal    inverts the encapsulation performed by GSS_Seal(),  deciphers the    message if the optional confidentiality feature was applied, and    validates the data origin authentication and data integrity checking    quantities. GSS_Unseal()  indicates successful validation by    returning GSS_COMPLETE status along with the resultant    output_message. 
  65.  
  66.    For purposes of this example, we assume that the server knows by    out-of-band means that this context will have no further use after    one protected message is transferred from client to server. Given    this premise, the server now calls GSS_Delete_sec_context() to flush    context-level information. GSS_Delete_sec_context() returns a    context_token for the server to pass to the client. 
  67.  
  68.    The client passes the returned context_token to    GSS_Process_context_token(),  which returns GSS_COMPLETE status after    deleting context-level information at the client system. 
  69.  
  70.    The GSS-API design assumes and addresses several basic goals,    including: 
  71.  
  72.       Mechanism independence: The GSS-API defines an interface to       cryptographically implemented strong authentication and other       security services at a generic level which is independent of       particular underlying mechanisms. For example, GSS-API-provided       services can be implemented by secret-key technologies (e.g.,       Kerberos) or public-key approaches (e.g., X.509). 
  73.  
  74.       Protocol environment independence: The GSS-API is independent of       the communications protocol suites with which it is employed,       permitting use in a broad range of protocol environments. In       appropriate environments, an intermediate implementation "veneer"       which is oriented to a particular communication protocol (e.g.,       Remote Procedure Call (RPC)) may be interposed between       applications which call that protocol and the GSS-API, thereby       invoking GSS-API facilities in conjunction with that protocol's 
  75.  
  76.  
  77.  
  78. Linn                                                            [Page 4] 
  79.  RFC 1508               Generic Security Interface         September 1993 
  80.  
  81.        communications invocations. 
  82.  
  83.       Protocol association independence: The GSS-API's security context       construct is independent of communications protocol association       constructs. This characteristic allows a single GSS-API       implementation to be utilized by a variety of invoking protocol       modules on behalf of those modules' calling applications. GSS-API       services can also be invoked directly by applications, wholly       independent of protocol associations. 
  84.  
  85.       Suitability to a range of implementation placements: GSS-API       clients are not constrained to reside within any Trusted Computing       Base (TCB) perimeter defined on a system where the GSS-API is       implemented; security services are specified in a manner suitable       to both intra-TCB and extra-TCB callers. 
  86.  
  87. 1.1. GSS-API Constructs 
  88.  
  89.    This section describes the basic elements comprising the GSS-API. 
  90.  
  91. 1.1.1.  Credentials 
  92.  
  93.    Credentials structures provide the prerequisites enabling peers to    establish security contexts with each other. A caller may designate    that its default credential be used for context establishment calls    without presenting an explicit handle to that credential.    Alternately, those GSS-API callers which need to make explicit    selection of particular credentials structures may make references to    those credentials through GSS-API-provided credential handles    ("cred_handles"). 
  94.  
  95.    A single credential structure may be used for initiation of outbound    contexts and acceptance of inbound contexts. Callers needing to    operate in only one of these modes may designate this fact when    credentials are acquired for use, allowing underlying mechanisms to    optimize their processing and storage requirements. The credential    elements defined by a particular mechanism may contain multiple    cryptographic keys, e.g., to enable authentication and message    encryption to be performed with different algorithms. 
  96.  
  97.    A single credential structure may accommodate credential information    associated with multiple underlying mechanisms (mech_types); a    credential structure's contents will vary depending on the set of    mech_types supported by a particular GSS-API implementation.    Commonly, a single mech_type will be used for all security contexts    established by a particular initiator to a particular target; the    primary motivation for supporting credential sets representing    multiple mech_types is to allow initiators on systems which are 
  98.  
  99.  
  100.  
  101. Linn                                                            [Page 5] 
  102.  RFC 1508               Generic Security Interface         September 1993 
  103.  
  104.     equipped to handle multiple types to initiate contexts to targets on    other systems which can accommodate only a subset of the set    supported at the initiator's system. 
  105.  
  106.    It is the responsibility of underlying system-specific mechanisms and    OS functions below the GSS-API to ensure that the ability to acquire    and use credentials associated with a given identity is constrained    to appropriate processes within a system. This responsibility should    be taken seriously by implementors, as the ability for an entity to    utilize a principal's credentials is equivalent to the entity's    ability to successfully assert that principal's identity. 
  107.  
  108.    Once a set of GSS-API credentials is established, the transferability    of that credentials set to other processes or analogous constructs    within a system is a local matter, not defined by the GSS-API. An    example local policy would be one in which any credentials received    as a result of login to a given user account, or of delegation of    rights to that account, are accessible by, or transferable to,    processes running under that account. 
  109.  
  110.    The credential establishment process (particularly when performed on    behalf of users rather than server processes) is likely to require    access to passwords or other quantities which should be protected    locally and exposed for the shortest time possible. As a result, it    will often be appropriate for preliminary credential establishment to    be performed through local means at user login time, with the    result(s) cached for subsequent reference. These preliminary    credentials would be set aside (in a system-specific fashion) for    subsequent use, either: 
  111.  
  112.       to be accessed by an invocation of the GSS-API GSS_Acquire_cred()       call, returning an explicit handle to reference that credential 
  113.  
  114.       as the default credentials installed on behalf of a process 
  115.  
  116. 1.1.2. Tokens 
  117.  
  118.    Tokens are data elements transferred between GSS-API callers, and are    divided into two classes. Context-level tokens are exchanged in order    to establish and manage a security context between peers. Per-message    tokens are exchanged in conjunction with an established context to    provide protective security services for corresponding data messages.    The internal contents of both classes of tokens are specific to the    particular underlying mechanism used to support the GSS-API; Appendix    B of this document provides a uniform recommendation for designers of    GSS-API support mechanisms, encapsulating mechanism-specific    information along with a globally-interpretable mechanism identifier. 
  119.  
  120.  
  121.  
  122.  Linn                                                            [Page 6] 
  123.  RFC 1508               Generic Security Interface         September 1993 
  124.  
  125.     Tokens are opaque from the viewpoint of GSS-API callers. They are    generated within the GSS-API implementation at an end system,    provided to a GSS-API caller to be transferred to the peer GSS-API    caller at a remote end system, and processed by the GSS-API    implementation at that remote end system. Tokens may be output by    GSS-API primitives (and are to be transferred to GSS-API peers)    independent of the status indications which those primitives    indicate. Token transfer may take place in an in-band manner,    integrated into the same protocol stream used by the GSS-API callers    for other data transfers, or in an out-of-band manner across a    logically separate channel. 
  126.  
  127.    Development of GSS-API support primitives based on a particular    underlying cryptographic technique and protocol does not necessarily    imply that GSS-API callers invoking that GSS-API mechanism type will    be able to interoperate with peers invoking the same technique and    protocol outside the GSS-API paradigm.  For example, the format of    GSS-API tokens defined in conjunction with a particular mechanism,    and the techniques used to integrate those tokens into callers'    protocols, may not be the same as those used by non-GSS-API callers    of the same underlying technique. 
  128.  
  129. 1.1.3.  Security Contexts 
  130.  
  131.    Security contexts are established between peers, using credentials    established locally in conjunction with each peer or received by    peers via delegation. Multiple contexts may exist simultaneously    between a pair of peers, using the same or different sets of    credentials. Coexistence of multiple contexts using different    credentials allows graceful rollover when credentials expire.    Distinction among multiple contexts based on the same credentials    serves applications by distinguishing different message streams in a    security sense. 
  132.  
  133.    The GSS-API is independent of underlying protocols and addressing    structure, and depends on its callers to transport GSS-API-provided    data elements. As a result of these factors, it is a caller    responsibility to parse communicated messages, separating GSS-API-    related data elements from caller-provided data.  The GSS-API is    independent of connection vs. connectionless orientation of the    underlying communications service. 
  134.  
  135.    No correlation between security context and communications protocol    association is dictated. (The optional channel binding facility,    discussed in Section 1.1.6 of this document, represents an    intentional exception to this rule, supporting additional protection    features within GSS-API supporting mechanisms.) This separation    allows the GSS-API to be used in a wide range of communications 
  136.  
  137.  
  138.  
  139. Linn                                                            [Page 7] 
  140.  RFC 1508               Generic Security Interface         September 1993 
  141.  
  142.     environments, and also simplifies the calling sequences of the    individual calls. In many cases (depending on underlying security    protocol, associated mechanism, and availability of cached    information), the state information required for context setup can be    sent concurrently with initial signed user data, without interposing    additional message exchanges. 
  143.  
  144. 1.1.4.  Mechanism Types 
  145.  
  146.    In order to successfully establish a security context with a target    peer, it is necessary to identify an appropriate underlying mechanism    type (mech_type) which both initiator and target peers support. The    definition of a mechanism embodies not only the use of a particular    cryptographic technology (or a hybrid or choice among alternative    cryptographic technologies), but also definition of the syntax and    semantics of data element exchanges which that mechanism will employ    in order to support security services. 
  147.  
  148.    It is recommended that callers initiating contexts specify the    "default" mech_type value, allowing system-specific functions within    or invoked by the GSS-API implementation to select the appropriate    mech_type, but callers may direct that a particular mech_type be    employed when necessary. 
  149.  
  150.    The means for identifying a shared mech_type to establish a security    context with a peer will vary in different environments and    circumstances; examples include (but are not limited to): 
  151.  
  152.       use of a fixed mech_type, defined by configuration, within an       environment 
  153.  
  154.       syntactic convention on a target-specific basis, through       examination of a target's name 
  155.  
  156.       lookup of a target's name in a naming service or other database in       order to identify mech_types supported by that target 
  157.  
  158.       explicit negotiation between GSS-API callers in advance of       security context setup 
  159.  
  160.    When transferred between GSS-API peers, mech_type specifiers (per    Appendix B, represented as Object Identifiers (OIDs)) serve to    qualify the interpretation of associated tokens. (The structure and    encoding of Object Identifiers is defined in ISO/IEC 8824,    "Specification of Abstract Syntax Notation One (ASN.1)" and in    ISO/IEC 8825, "Specification of Basic Encoding Rules for Abstract    Syntax Notation One (ASN.1)".) Use of hierarchically structured OIDs    serves to preclude ambiguous interpretation of mech_type specifiers. 
  161.  
  162.  
  163.  
  164. Linn                                                            [Page 8] 
  165.  RFC 1508               Generic Security Interface         September 1993 
  166.  
  167.     The OID representing the DASS MechType, for example, is    1.3.12.2.1011.7.5. 
  168.  
  169. 1.1.5.  Naming 
  170.  
  171.    The GSS-API avoids prescription of naming structures, treating the    names transferred across the interface in order to initiate and    accept security contexts as opaque octet string quantities.  This    approach supports the GSS-API's goal of implementability atop a range    of underlying security mechanisms, recognizing the fact that    different mechanisms process and authenticate names which are    presented in different forms. Generalized services offering    translation functions among arbitrary sets of naming environments are    outside the scope of the GSS-API; availability and use of local    conversion functions to translate among the naming formats supported    within a given end system is anticipated. 
  172.  
  173.    Two distinct classes of name representations are used in conjunction    with different GSS-API parameters: 
  174.  
  175.       a printable form (denoted by OCTET STRING), for acceptance from       and presentation to users; printable name forms are accompanied by       OID tags identifying the namespace to which they correspond 
  176.  
  177.       an internal form (denoted by INTERNAL NAME), opaque to callers and       defined by individual GSS-API implementations; GSS-API       implementations supporting multiple namespace types are       responsible for maintaining internal tags to disambiguate the       interpretation of particular names 
  178.  
  179.       Tagging of printable names allows GSS-API callers and underlying       GSS-API mechanisms to disambiguate name types and to determine       whether an associated name's type is one which they are capable of       processing, avoiding aliasing problems which could result from       misinterpreting a name of one type as a name of another type. 
  180.  
  181.    In addition to providing means for names to be tagged with types,    this specification defines primitives to support a level of naming    environment independence for certain calling applications. To provide    basic services oriented towards the requirements of callers which    need not themselves interpret the internal syntax and semantics of    names, GSS-API calls for name comparison (GSS_Compare_name()),    human-readable display (GSS_Display_name()),  input conversion    (GSS_Import_name()), and internal name deallocation    (GSS_Release_name())  functions are defined. (It is anticipated that    these proposed GSS-API calls will be implemented in many end systems    based on system-specific name manipulation primitives already extant    within those end systems; inclusion within the GSS-API is intended to 
  182.  
  183.  
  184.  
  185. Linn                                                            [Page 9] 
  186.  RFC 1508               Generic Security Interface         September 1993 
  187.  
  188.     offer GSS-API callers a portable means to perform specific    operations, supportive of authorization and audit requirements, on    authenticated names.) 
  189.  
  190.    GSS_Import_name()  implementations can, where appropriate, support    more than one printable syntax corresponding to a given namespace    (e.g., alternative printable representations for X.500 Distinguished    Names), allowing flexibility for their callers to select among    alternative representations. GSS_Display_name() implementations    output a printable syntax selected as appropriate to their    operational environments; this selection is a local matter. Callers    desiring portability across alternative printable syntaxes should    refrain from implementing comparisons based on printable name forms    and should instead use the GSS_Compare_name()  call to determine    whether or not one internal-format name matches another. 
  191.  
  192. 1.1.6.  Channel Bindings 
  193.  
  194.    The GSS-API accommodates the concept of caller-provided channel    binding ("chan_binding") information, used by GSS-API callers to bind    the establishment of a security context to relevant characteristics    (e.g., addresses, transformed representations of encryption keys) of    the underlying communications channel and of protection mechanisms    applied to that communications channel.  Verification by one peer of    chan_binding information provided by the other peer to a context    serves to protect against various active attacks. The caller    initiating a security context must determine the chan_binding values    before making the GSS_Init_sec_context()  call, and consistent values    must be provided by both peers to a context. Callers should not    assume that underlying mechanisms provide confidentiality protection    for channel binding information. 
  195.  
  196.    Use or non-use of the GSS-API channel binding facility is a caller    option, and GSS-API supporting mechanisms can support operation in an    environment where NULL channel bindings are presented. When non-NULL    channel bindings are used, certain mechanisms will offer enhanced    security value by interpreting the bindings' content (rather than    simply representing those bindings, or signatures computed on them,    within tokens) and will therefore depend on presentation of specific    data in a defined format. To this end, agreements among mechanism    implementors are defining conventional interpretations for the    contents of channel binding arguments, including address specifiers    (with content dependent on communications protocol environment) for    context initiators and acceptors. (These conventions are being    incorporated into related documents.) In order for GSS-API callers to    be portable across multiple mechanisms and achieve the full security    functionality available from each mechanism, it is strongly    recommended that GSS-API callers provide channel bindings consistent 
  197.  
  198.  
  199.  
  200. Linn                                                           [Page 10] 
  201.  RFC 1508               Generic Security Interface         September 1993 
  202.  
  203.     with these conventions and those of the networking environment in    which they operate. 
  204.  
  205. 1.2.  GSS-API Features and Issues 
  206.  
  207.    This section describes aspects of GSS-API operations, of the security    services which the GSS-API provides, and provides commentary on    design issues. 
  208.  
  209. 1.2.1.  Status Reporting 
  210.  
  211.    Each GSS-API call provides two status return values. Major_status    values provide a mechanism-independent indication of call status    (e.g., GSS_COMPLETE, GSS_FAILURE, GSS_CONTINUE_NEEDED), sufficient to    drive normal control flow within the caller in a generic fashion.    Table 1 summarizes the defined major_status return codes in tabular    fashion. 
  212.  
  213.    Table 1: GSS-API Major Status Codes 
  214.  
  215.       FATAL ERROR CODES 
  216.  
  217.       GSS_BAD_BINDINGS             channel binding mismatch       GSS_BAD_MECH                 unsupported mechanism requested       GSS_BAD_NAME                 invalid name provided       GSS_BAD_NAMETYPE             name of unsupported type provided       GSS_BAD_STATUS               invalid input status selector       GSS_BAD_SIG                  token had invalid signature       GSS_CONTEXT_EXPIRED          specified security context expired       GSS_CREDENTIALS_EXPIRED      expired credentials detected       GSS_DEFECTIVE_CREDENTIAL     defective credential detected       GSS_DEFECTIVE_TOKEN          defective token detected       GSS_FAILURE                  failure, unspecified at GSS-API                                    level       GSS_NO_CONTEXT               no valid security context specified       GSS_NO_CRED                  no valid credentials provided 
  218.  
  219.       INFORMATORY STATUS CODES 
  220.  
  221.       GSS_COMPLETE                 normal completion       GSS_CONTINUE_NEEDED          continuation call to routine                                    required       GSS_DUPLICATE_TOKEN          duplicate per-message token                                    detected       GSS_OLD_TOKEN                timed-out per-message token                                    detected       GSS_UNSEQ_TOKEN              out-of-order per-message token                                    detected 
  222.  
  223.  
  224.  
  225. Linn                                                           [Page 11] 
  226.  RFC 1508               Generic Security Interface         September 1993 
  227.  
  228.     Minor_status provides more detailed status information which may    include status codes specific to the underlying security mechanism.    Minor_status values are not specified in this document. 
  229.  
  230.    GSS_CONTINUE_NEEDED major_status returns, and optional message    outputs, are provided in GSS_Init_sec_context()  and    GSS_Accept_sec_context()  calls so that different mechanisms'    employment of different numbers of messages within their    authentication sequences need not be reflected in separate code paths    within calling applications. Instead, such cases are accomodated with    sequences of continuation calls to GSS_Init_sec_context()  and    GSS_Accept_sec_context().  The same mechanism is used to encapsulate    mutual authentication within the GSS-API's context initiation calls. 
  231.  
  232.    For mech_types which require interactions with third-party servers in    order to establish a security context, GSS-API context establishment    calls may block pending completion of such third-party interactions.    On the other hand, no GSS-API calls pend on serialized interactions    with GSS-API peer entities.  As a result, local GSS-API status    returns cannot reflect unpredictable or asynchronous exceptions    occurring at remote peers, and reflection of such status information    is a caller responsibility outside the GSS-API. 
  233.  
  234. 1.2.2. Per-Message Security Service Availability 
  235.  
  236.    When a context is established, two flags are returned to indicate the    set of per-message protection security services which will be    available on the context: 
  237.  
  238.       the integ_avail flag indicates whether per-message integrity and       data origin authentication services are available 
  239.  
  240.       the conf_avail flag indicates whether per-message confidentiality       services are available, and will never be returned TRUE unless the       integ_avail flag is also returned TRUE 
  241.  
  242.       GSS-API callers desiring per-message security services should       check the values of these flags at context establishment time, and       must be aware that a returned FALSE value for integ_avail means       that invocation of GSS_Sign()  or GSS_Seal() primitives on the       associated context will apply no cryptographic protection to user       data messages. 
  243.  
  244.    The GSS-API per-message protection service primitives, as the    category name implies, are oriented to operation at the granularity    of protocol data units. They perform cryptographic operations on the    data units, transfer cryptographic control information in tokens,    and, in the case of GSS_Seal(), encapsulate the protected data unit. 
  245.  
  246.  
  247.  
  248. Linn                                                           [Page 12] 
  249.  RFC 1508               Generic Security Interface         September 1993 
  250.  
  251.     As such, these primitives are not oriented to efficient data    protection for stream-paradigm protocols (e.g., Telnet) if    cryptography must be applied on an octet-by-octet basis. 
  252.  
  253. 1.2.3. Per-Message Replay Detection and Sequencing 
  254.  
  255.    Certain underlying mech_types are expected to offer support for    replay detection and/or sequencing of messages transferred on the    contexts they support. These optionally-selectable protection    features are distinct from replay detection and sequencing features    applied to the context establishment operation itself; the presence    or absence of context-level replay or sequencing features is wholly a    function of the underlying mech_type's capabilities, and is not    selected or omitted as a caller option. 
  256.  
  257.    The caller initiating a context provides flags (replay_det_req_flag    and sequence_req_flag) to specify whether the use of per-message    replay detection and sequencing features is desired on the context    being established. The GSS-API implementation at the initiator system    can determine whether these features are supported (and whether they    are optionally selectable) as a function of mech_type, without need    for bilateral negotiation with the target. When enabled, these    features provide recipients with indicators as a result of GSS-API    processing of incoming messages, identifying whether those messages    were detected as duplicates or out-of-sequence. Detection of such    events does not prevent a suspect message from being provided to a    recipient; the appropriate course of action on a suspect message is a    matter of caller policy. 
  258.  
  259.    The semantics of the replay detection and sequencing services applied    to received messages, as visible across the interface which the GSS-    API provides to its clients, are as follows: 
  260.  
  261.    When replay_det_state is TRUE, the possible major_status returns for    well-formed and correctly signed messages are as follows: 
  262.  
  263.       1. GSS_COMPLETE indicates that the message was within the window       (of time or sequence space) allowing replay events to be detected,       and that the message was not a replay of a previously-processed       message within that window. 
  264.  
  265.       2. GSS_DUPLICATE_TOKEN indicates that the signature on the       received message was correct, but that the message was recognized       as a duplicate of a previously-processed message. 
  266.  
  267.       3. GSS_OLD_TOKEN indicates that the signature on the received       message was correct, but that the message is too old to be checked       for duplication. 
  268.  
  269.  
  270.  
  271. Linn                                                           [Page 13] 
  272.  RFC 1508               Generic Security Interface         September 1993 
  273.  
  274.     When sequence_state is TRUE, the possible major_status returns for    well-formed and correctly signed messages are as follows: 
  275.  
  276.       1. GSS_COMPLETE indicates that the message was within the window       (of time or sequence space) allowing replay events to be detected,       and that the message was not a replay of a previously-processed       message within that window. 
  277.  
  278.       2. GSS_DUPLICATE_TOKEN indicates that the signature on the       received message was correct, but that the message was recognized       as a duplicate of a previously-processed message. 
  279.  
  280.       3. GSS_OLD_TOKEN indicates that the signature on the received       message was correct, but that the token is too old to be checked       for duplication. 
  281.  
  282.       4. GSS_UNSEQ_TOKEN indicates that the signature on the received       message was correct, but that it is earlier in a sequenced stream       than a message already processed on the context.  [Note:       Mechanisms can be architected to provide a stricter form of       sequencing service, delivering particular messages to recipients       only after all predecessor messages in an ordered stream have been       delivered.  This type of support is incompatible with the GSS-API       paradigm in which recipients receive all messages, whether in       order or not, and provide them (one at a time, without intra-GSS-       API message buffering) to GSS-API routines for validation.  GSS-       API facilities provide supportive functions, aiding clients to       achieve strict message stream integrity in an efficient manner in       conjunction with sequencing provisions in communications       protocols, but the GSS-API does not offer this level of message       stream integrity service by itself.] 
  283.  
  284.    As the message stream integrity features (especially sequencing) may    interfere with certain applications' intended communications    paradigms, and since support for such features is likely to be    resource intensive, it is highly recommended that mech_types    supporting these features allow them to be activated selectively on    initiator request when a context is established. A context initiator    and target are provided with corresponding indicators    (replay_det_state and sequence_state), signifying whether these    features are active on a given context. 
  285.  
  286.    An example mech_type supporting per-message replay detection could    (when replay_det_state is TRUE) implement the feature as follows: The    underlying mechanism would insert timestamps in data elements output    by GSS_Sign() and GSS_Seal(), and would maintain (within a time-    limited window) a cache (qualified by originator-recipient pair)    identifying received data elements processed by GSS_Verify() and 
  287.  
  288.  
  289.  
  290. Linn                                                           [Page 14] 
  291.  RFC 1508               Generic Security Interface         September 1993 
  292.  
  293.     GSS_Unseal(). When this feature is active, exception status returns    (GSS_DUPLICATE_TOKEN, GSS_ OLD_TOKEN) will be provided when    GSS_Verify() or GSS_Unseal() is presented with a message which is    either a detected duplicate of a prior message or which is too old to    validate against a cache of recently received messages. 
  294.  
  295. 1.2.4.  Quality of Protection 
  296.  
  297.    Some mech_types will provide their users with fine granularity    control over the means used to provide per-message protection,    allowing callers to trade off security processing overhead    dynamically against the protection requirements of particular    messages. A per-message quality-of-protection parameter (analogous to    quality-of-service, or QOS) selects among different QOP options    supported by that mechanism. On context establishment for a multi-QOP    mech_type, context-level data provides the prerequisite data for a    range of protection qualities. 
  298.  
  299.    It is expected that the majority of callers will not wish to exert    explicit mechanism-specific QOP control and will therefore request    selection of a default QOP. Definitions of, and choices among, non-    default QOP values are mechanism-specific, and no ordered sequences    of QOP values can be assumed equivalent across different mechanisms.    Meaningful use of non-default QOP values demands that callers be    familiar with the QOP definitions of an underlying mechanism or    mechanisms, and is therefore a non-portable construct. 
  300.  
  301. 2.  Interface Descriptions 
  302.  
  303.    This section describes the GSS-API's service interface, dividing the    set of calls offered into four groups. Credential management calls    are related to the acquisition and release of credentials by    principals. Context-level calls are related to the management of    security contexts between principals. Per-message calls are related    to the protection of individual messages on established security    contexts. Support calls provide ancillary functions useful to GSS-API    callers. Table 2 groups and summarizes the calls in tabular fashion. 
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  Linn                                                           [Page 15] 
  318.  RFC 1508               Generic Security Interface         September 1993 
  319.  
  320.        Table 2:  GSS-API Calls 
  321.  
  322.       CREDENTIAL MANAGEMENT 
  323.  
  324.       GSS_Acquire_cred             acquire credentials for use       GSS_Release_cred             release credentials after use       GSS_Inquire_cred             display information about                                    credentials 
  325.  
  326.       CONTEXT-LEVEL CALLS 
  327.  
  328.       GSS_Init_sec_context         initiate outbound security context       GSS_Accept_sec_context       accept inbound security context       GSS_Delete_sec_context       flush context when no longer needed       GSS_Process_context_token    process received control token on                                    context       GSS_Context_time             indicate validity time remaining on                                    context 
  329.  
  330.       PER-MESSAGE CALLS 
  331.  
  332.       GSS_Sign                     apply signature, receive as token                                    separate from message       GSS_Verify                   validate signature token along with                                    message       GSS_Seal                     sign, optionally encrypt,                                    encapsulate       GSS_Unseal                   decapsulate, decrypt if needed,                                    validate signature 
  333.  
  334.       SUPPORT CALLS 
  335.  
  336.       GSS_Display_status           translate status codes to printable                                    form       GSS_Indicate_mechs           indicate mech_types supported on                                    local system       GSS_Compare_name             compare two names for equality       GSS_Display_name             translate name to printable form       GSS_Import_name              convert printable name to                                    normalized form       GSS_Release_name             free storage of normalized-form                                    name       GSS_Release_buffer           free storage of printable name       GSS_Release_oid_set          free storage of OID set object 
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344. Linn                                                           [Page 16] 
  345.  RFC 1508               Generic Security Interface         September 1993 
  346.  
  347.  2.1.  Credential management calls 
  348.  
  349.    These GSS-API calls provide functions related to the management of    credentials. Their characterization with regard to whether or not    they may block pending exchanges with other network entities (e.g.,    directories or authentication servers) depends in part on OS-specific    (extra-GSS-API) issues, so is not specified in this document. 
  350.  
  351.    The GSS_Acquire_cred()  call is defined within the GSS-API in support    of application portability, with a particular orientation towards    support of portable server applications. It is recognized that (for    certain systems and mechanisms) credentials for interactive users may    be managed differently from credentials for server processes; in such    environments, it is the GSS-API implementation's responsibility to    distinguish these cases and the procedures for making this    distinction are a local matter. The GSS_Release_cred()  call provides    a means for callers to indicate to the GSS-API that use of a    credentials structure is no longer required. The GSS_Inquire_cred()    call allows callers to determine information about a credentials    structure. 
  352.  
  353. 2.1.1.  GSS_Acquire_cred call 
  354.  
  355.    Inputs: 
  356.  
  357.    o  desired_name INTERNAL NAME, -NULL requests locally-determined       default 
  358.  
  359.    o  lifetime_req INTEGER,-in seconds; 0 requests default 
  360.  
  361.    o  desired_mechs SET OF OBJECT IDENTIFIER,-empty set requests       system-selected default 
  362.  
  363.    o  cred_usage INTEGER-0=INITIATE-AND-ACCEPT, 1=INITIATE-ONLY,       2=ACCEPT-ONLY 
  364.  
  365.    Outputs: 
  366.  
  367.    o  major_status INTEGER, 
  368.  
  369.    o  minor_status INTEGER, 
  370.  
  371.    o  output_cred_handle OCTET STRING, 
  372.  
  373.    o  actual_mechs SET OF OBJECT IDENTIFIER, 
  374.  
  375.    o  lifetime_rec INTEGER -in seconds, or reserved value for       INDEFINITE 
  376.  
  377.  
  378.  
  379. Linn                                                           [Page 17] 
  380.  RFC 1508               Generic Security Interface         September 1993 
  381.  
  382.     Return major_status codes: 
  383.  
  384.    o  GSS_COMPLETE indicates that requested credentials were       successfully established, for the duration indicated in       lifetime_rec, suitable for the usage requested in cred_usage, for       the set of mech_types indicated in actual_mechs, and that those       credentials can be referenced for subsequent use with the handle       returned in output_cred_handle. 
  385.  
  386.    o  GSS_BAD_MECH indicates that a mech_type unsupported by the GSS-API       implementation type was requested, causing the credential       establishment operation to fail. 
  387.  
  388.    o  GSS_BAD_NAMETYPE indicates that the provided desired_name is       uninterpretable or of a type unsupported by the supporting GSS-API       implementation, so no credentials could be established for the       accompanying desired_name. 
  389.  
  390.    o  GSS_BAD_NAME indicates that the provided desired_name is       inconsistent in terms of internally-incorporated type specifier       information, so no credentials could be established for the       accompanying desired_name. 
  391.  
  392.    o  GSS_FAILURE indicates that credential establishment failed for       reasons unspecified at the GSS-API level, including lack of       authorization to establish and use credentials associated with the       identity named in the input desired_name argument. 
  393.  
  394.    GSS_Acquire_cred()  is used to acquire credentials so that a    principal can (as a function of the input cred_usage parameter)    initiate and/or accept security contexts under the identity    represented by the desired_name input argument. On successful    completion, the returned output_cred_handle result provides a handle    for subsequent references to the acquired credentials.  Typically,    single-user client processes using only default credentials for    context establishment purposes will have no need to invoke this call. 
  395.  
  396.    A caller may provide the value NULL for desired_name, signifying a    request for credentials corresponding to a default principal    identity.  The procedures used by GSS-API implementations to select    the appropriate principal identity in response to this form of    request are local matters. It is possible that multiple pre-    established credentials may exist for the same principal identity    (for example, as a result of multiple user login sessions) when    GSS_Acquire_cred() is called; the means used in such cases to select    a specific credential are local matters.  The input lifetime_req    argument to GSS_Acquire_cred() may provide useful information for    local GSS-API implementations to employ in making this disambiguation 
  397.  
  398.  
  399.  
  400. Linn                                                           [Page 18] 
  401.  RFC 1508               Generic Security Interface         September 1993 
  402.  
  403.     in a manner which will best satisfy a caller's intent. 
  404.  
  405.    The lifetime_rec result indicates the length of time for which the    acquired credentials will be valid, as an offset from the present. A    mechanism may return a reserved value indicating INDEFINITE if no    constraints on credential lifetime are imposed.  A caller of    GSS_Acquire_cred()  can request a length of time for which acquired    credentials are to be valid (lifetime_req argument), beginning at the    present, or can request credentials with a default validity interval.    (Requests for postdated credentials are not supported within the    GSS-API.) Certain mechanisms and implementations may bind in    credential validity period specifiers at a point preliminary to    invocation of the GSS_Acquire_cred() call (e.g., in conjunction with    user login procedures). As a result, callers requesting non-default    values for lifetime_req must recognize that such requests cannot    always be honored and must be prepared to accommodate the use of    returned credentials with different lifetimes as indicated in    lifetime_rec. 
  406.  
  407.    The caller of GSS_Acquire_cred() can explicitly specify a set of    mech_types which are to be accommodated in the returned credentials    (desired_mechs argument), or can request credentials for a system-    defined default set of mech_types. Selection of the system-specified    default set is recommended in the interests of application    portability. The actual_mechs return value may be interrogated by the    caller to determine the set of mechanisms with which the returned    credentials may be used. 
  408.  
  409. 2.1.2.  GSS_Release_cred call 
  410.  
  411.    Input: 
  412.  
  413.    o  cred_handle OCTET STRING-NULL specifies default credentials 
  414.  
  415.    Outputs: 
  416.  
  417.    o  major_status INTEGER, 
  418.  
  419.    o  minor_status INTEGER 
  420.  
  421.    Return major_status codes: 
  422.  
  423.    o  GSS_COMPLETE indicates that the credentials referenced by the       input cred_handle were released for purposes of subsequent access       by the caller. The effect on other processes which may be       authorized shared access to such credentials is a local matter. 
  424.  
  425.  
  426.  
  427.  
  428.  
  429. Linn                                                           [Page 19] 
  430.  RFC 1508               Generic Security Interface         September 1993 
  431.  
  432.     o  GSS_NO_CRED indicates that no release operation was performed,       either because the input cred_handle was invalid or because the       caller lacks authorization to access the referenced credentials. 
  433.  
  434.    o  GSS_FAILURE indicates that the release operation failed for       reasons unspecified at the GSS-API level. 
  435.  
  436.    Provides a means for a caller to explicitly request that credentials    be released when their use is no longer required. Note that system-    specific credential management functions are also likely to exist,    for example to assure that credentials shared among processes are    properly deleted when all affected processes terminate, even if no    explicit release requests are issued by those processes.  Given the    fact that multiple callers are not precluded from gaining authorized    access to the same credentials, invocation of GSS_Release_cred()    cannot be assumed to delete a particular set of credentials on a    system-wide basis. 
  437.  
  438. 2.1.3.  GSS_Inquire_cred call 
  439.  
  440.       Input: 
  441.  
  442.       o  cred_handle OCTET STRING -NULL specifies default credentials 
  443.  
  444.       Outputs: 
  445.  
  446.       o  major_status INTEGER, 
  447.  
  448.       o  minor_status INTEGER, 
  449.  
  450.       o  cred_name INTERNAL NAME, 
  451.  
  452.       o  lifetime_rec INTEGER -in seconds, or reserved value for          INDEFINITE 
  453.  
  454.       o  cred_usage INTEGER, -0=INITIATE-AND-ACCEPT, 1=INITIATE-ONLY,          2=ACCEPT-ONLY 
  455.  
  456.       o  mech_set SET OF OBJECT IDENTIFIER 
  457.  
  458.       Return major_status codes: 
  459.  
  460.       o  GSS_COMPLETE indicates that the credentials referenced by the          input cred_handle argument were valid, and that the output          cred_name, lifetime_rec, and cred_usage values represent,          respectively, the credentials' associated principal name,          remaining lifetime, suitable usage modes, and supported          mechanism types. 
  461.  
  462.  
  463.  
  464. Linn                                                           [Page 20] 
  465.  RFC 1508               Generic Security Interface         September 1993 
  466.  
  467.        o  GSS_NO_CRED indicates that no information could be returned          about the referenced credentials, either because the input          cred_handle was invalid or because the caller lacks          authorization to access the referenced credentials. 
  468.  
  469.       o  GSS_FAILURE indicates that the release operation failed for          reasons unspecified at the GSS-API level. 
  470.  
  471.    The GSS_Inquire_cred()  call is defined primarily for the use of    those callers which make use of default credentials rather than    acquiring credentials explicitly with GSS_Acquire_cred().  It enables    callers to determine a credential structure's associated principal    name, remaining validity period, usability for security context    initiation and/or acceptance, and supported mechanisms. 
  472.  
  473. 2.2.  Context-level calls 
  474.  
  475.    This group of calls is devoted to the establishment and management of    security contexts between peers. A context's initiator calls    GSS_Init_sec_context(),  resulting in generation of a token which the    caller passes to the target. At the target, that token is passed to    GSS_Accept_sec_context().  Depending on the underlying mech_type and    specified options, additional token exchanges may be performed in the    course of context establishment; such exchanges are accommodated by    GSS_CONTINUE_NEEDED status returns from GSS_Init_sec_context()  and    GSS_Accept_sec_context().  Either party to an established context may    invoke GSS_Delete_sec_context()  to flush context information when a    context is no longer required. GSS_Process_context_token()  is used    to process received tokens carrying context-level control    information. GSS_Context_time()  allows a caller to determine the    length of time for which an established context will remain valid. 
  476.  
  477. 2.2.1.  GSS_Init_sec_context call 
  478.  
  479.    Inputs: 
  480.  
  481.    o  claimant_cred_handle OCTET STRING, -NULL specifies "use       default" 
  482.  
  483.    o  input_context_handle INTEGER, -0 specifies "none assigned       yet" 
  484.  
  485.    o  targ_name INTERNAL NAME, 
  486.  
  487.    o  mech_type OBJECT IDENTIFIER, -NULL parameter specifies "use       default" 
  488.  
  489.    o  deleg_req_flag BOOLEAN, 
  490.  
  491.  
  492.  
  493. Linn                                                           [Page 21] 
  494.  RFC 1508               Generic Security Interface         September 1993 
  495.  
  496.     o  mutual_req_flag BOOLEAN, 
  497.  
  498.    o  replay_det_req_flag BOOLEAN, 
  499.  
  500.    o  sequence_req_flag BOOLEAN, 
  501.  
  502.    o  lifetime_req INTEGER,-0 specifies default lifetime 
  503.  
  504.    o  chan_bindings OCTET STRING, 
  505.  
  506.    o  input_token OCTET STRING-NULL or token received from target 
  507.  
  508.    Outputs: 
  509.  
  510.    o  major_status INTEGER, 
  511.  
  512.    o  minor_status INTEGER, 
  513.  
  514.    o  output_context_handle INTEGER, 
  515.  
  516.    o  mech_type OBJECT IDENTIFIER, -actual mechanism always       indicated, never NULL 
  517.  
  518.    o  output_token OCTET STRING, -NULL or token to pass to context       target 
  519.  
  520.    o  deleg_state BOOLEAN, 
  521.  
  522.    o  mutual_state BOOLEAN, 
  523.  
  524.    o  replay_det_state BOOLEAN, 
  525.  
  526.    o  sequence_state BOOLEAN, 
  527.  
  528.    o  conf_avail BOOLEAN, 
  529.  
  530.    o  integ_avail BOOLEAN, 
  531.  
  532.    o  lifetime_rec INTEGER - in seconds, or reserved value for       INDEFINITE 
  533.  
  534.    This call may block pending network interactions for those mech_types    in which an authentication server or other network entity must be    consulted on behalf of a context initiator in order to generate an    output_token suitable for presentation to a specified target. 
  535.  
  536.    Return major_status codes: 
  537.  
  538.  
  539.  
  540.  Linn                                                           [Page 22] 
  541.  RFC 1508               Generic Security Interface         September 1993 
  542.  
  543.     o  GSS_COMPLETE indicates that context-level information was       successfully initialized, and that the returned output_token will       provide sufficient information for the target to perform per-       message processing on the newly-established context. 
  544.  
  545.    o  GSS_CONTINUE_NEEDED indicates that control information in the       returned output_token must be sent to the target, and that a reply       must be received and passed as the input_token argument to a       continuation call to GSS_Init_sec_context(),  before per-message       processing can be performed in conjunction with this context. 
  546.  
  547.    o  GSS_DEFECTIVE_TOKEN indicates that consistency checks performed on       the input_token failed, preventing further processing from being       performed based on that token. 
  548.  
  549.    o  GSS_DEFECTIVE_CREDENTIAL indicates that consistency checks       performed on the credential structure referenced by       claimant_cred_handle failed, preventing further processing from       being performed using that credential structure. 
  550.  
  551.    o  GSS_BAD_SIG indicates that the received input_token contains an       incorrect signature, so context setup cannot be accomplished. 
  552.  
  553.    o  GSS_NO_CRED indicates that no context was established, either       because the input cred_handle was invalid, because the referenced       credentials are valid for context acceptor use only, or because       the caller lacks authorization to access the referenced       credentials. 
  554.  
  555.    o  GSS_CREDENTIALS_EXPIRED indicates that the credentials provided       through the input claimant_cred_handle argument are no longer       valid, so context establishment cannot be completed. 
  556.  
  557.    o  GSS_BAD_BINDINGS indicates that a mismatch between the caller-       provided chan_bindings and those extracted from the input_token       was detected, signifying a security-relevant event and preventing       context establishment. (This result will be returned by       GSS_Init_sec_context only for contexts where mutual_state is       TRUE.) 
  558.  
  559.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided; this major status will be       returned only for successor calls following GSS_CONTINUE_NEEDED       status returns. 
  560.  
  561.    o  GSS_BAD_NAMETYPE indicates that the provided targ_name is of a       type uninterpretable or unsupported by the supporting GSS-API       implementation, so context establishment cannot be completed. 
  562.  
  563.  
  564.  
  565. Linn                                                           [Page 23] 
  566.  RFC 1508               Generic Security Interface         September 1993 
  567.  
  568.     o  GSS_BAD_NAME indicates that the provided targ_name is inconsistent       in terms of internally-incorporated type specifier information, so       context establishment cannot be accomplished. 
  569.  
  570.    o  GSS_FAILURE indicates that context setup could not be accomplished       for reasons unspecified at the GSS-API level, and that no       interface-defined recovery action is available. 
  571.  
  572.    This routine is used by a context initiator, and ordinarily emits one    (or, for the case of a multi-step exchange, more than one)    output_token suitable for use by the target within the selected    mech_type's protocol. Using information in the credentials structure    referenced by claimant_cred_handle, GSS_Init_sec_context()    initializes the data structures required to establish a security    context with target targ_name. The claimant_cred_handle must    correspond to the same valid credentials structure on the initial    call to GSS_Init_sec_context()  and on any successor calls resulting    from GSS_CONTINUE_NEEDED status returns; different protocol sequences    modeled by the GSS_CONTINUE_NEEDED mechanism will require access to    credentials at different points in the context establishment    sequence. 
  573.  
  574.    The input_context_handle argument is 0, specifying "not yet    assigned", on the first GSS_Init_sec_context()  call relating to a    given context. That call returns an output_context_handle for future    references to this context. When continuation attempts to    GSS_Init_sec_context()  are needed to perform context establishment,    the previously-returned non-zero handle value is entered into the    input_context_handle argument and will be echoed in the returned    output_context_handle argument. On such continuation attempts (and    only on continuation attempts) the input_token value is used, to    provide the token returned from the context's target. 
  575.  
  576.    The chan_bindings argument is used by the caller to provide    information binding the security context to security-related    characteristics (e.g., addresses, cryptographic keys) of the    underlying communications channel. See Section 1.1.6 of this document    for more discussion of this argument's usage. 
  577.  
  578.    The input_token argument contains a message received from the target,    and is significant only on a call to GSS_Init_sec_context() which    follows a previous return indicating GSS_CONTINUE_NEEDED    major_status. 
  579.  
  580.    It is the caller's responsibility to establish a communications path    to the target, and to transmit any returned output_token (independent    of the accompanying returned major_status value) to the target over    that path. The output_token can, however, be transmitted along with 
  581.  
  582.  
  583.  
  584. Linn                                                           [Page 24] 
  585.  RFC 1508               Generic Security Interface         September 1993 
  586.  
  587.     the first application-provided input message to be processed by    GSS_Sign() or GSS_Seal() in conjunction with a successfully-    established context. 
  588.  
  589.    The initiator may request various context-level functions through    input flags: the deleg_req_flag requests delegation of access rights,    the mutual_req_flag requests mutual authentication, the    replay_det_req_flag requests that replay detection features be    applied to messages transferred on the established context, and the    sequence_req_flag requests that sequencing be enforced. (See Section    1.2.3 for more information on replay detection and sequencing    features.) 
  590.  
  591.    Not all of the optionally-requestable features will be available in    all underlying mech_types; the corresponding return state values    (deleg_state, mutual_state, replay_det_state, sequence_state)    indicate, as a function of mech_type processing capabilities and    initiator-provided input flags, the set of features which will be    active on the context. These state indicators' values are undefined    unless the routine's major_status indicates COMPLETE. Failure to    provide the precise set of features requested by the caller does not    cause context establishment to fail; it is the caller's prerogative    to delete the context if the feature set provided is unsuitable for    the caller's use.  The returned mech_type value indicates the    specific mechanism employed on the context, and will never indicate    the value for "default". 
  592.  
  593.    The conf_avail return value indicates whether the context supports    per-message confidentiality services, and so informs the caller    whether or not a request for encryption through the conf_req_flag    input to GSS_Seal() can be honored. In similar fashion, the    integ_avail return value indicates whether per-message integrity    services are available (through either GSS_Sign() or GSS_Seal()) on    the established context. 
  594.  
  595.    The lifetime_req input specifies a desired upper bound for the    lifetime of the context to be established, with a value of 0 used to    request a default lifetime. The lifetime_rec return value indicates    the length of time for which the context will be valid, expressed as    an offset from the present; depending on mechanism capabilities,    credential lifetimes, and local policy, it may not correspond to the    value requested in lifetime_req.  If no constraints on context    lifetime are imposed, this may be indicated by returning a reserved    value representing INDEFINITE lifetime_req. The values of conf_avail,    integ_avail, and lifetime_rec are undefined unless the routine's    major_status indicates COMPLETE. 
  596.  
  597.    If the mutual_state is TRUE, this fact will be reflected within the 
  598.  
  599.  
  600.  
  601. Linn                                                           [Page 25] 
  602.  RFC 1508               Generic Security Interface         September 1993 
  603.  
  604.     output_token. A call to GSS_Accept_sec_context() at the target in    conjunction with such a context will return a token, to be processed    by a continuation call to GSS_Init_sec_context(), in order to achieve    mutual authentication. 
  605.  
  606. 2.2.2.  GSS_Accept_sec_context call 
  607.  
  608.    Inputs: 
  609.  
  610.    o  acceptor_cred_handle OCTET STRING,-NULL specifies "use       default" 
  611.  
  612.    o  input_context_handle INTEGER, -0 specifies "not yet assigned" 
  613.  
  614.    o  chan_bindings OCTET STRING, 
  615.  
  616.    o  input_token OCTET STRING 
  617.  
  618.    Outputs: 
  619.  
  620.    o  major_status INTEGER, 
  621.  
  622.    o  minor_status INTEGER, 
  623.  
  624.    o  src_name INTERNAL NAME, 
  625.  
  626.    o  mech_type OBJECT IDENTIFIER, 
  627.  
  628.    o  output_context_handle INTEGER, 
  629.  
  630.    o  deleg_state BOOLEAN, 
  631.  
  632.    o  mutual_state BOOLEAN, 
  633.  
  634.    o  replay_det_state BOOLEAN, 
  635.  
  636.    o  sequence_state BOOLEAN, 
  637.  
  638.    o  conf_avail BOOLEAN, 
  639.  
  640.    o  integ_avail BOOLEAN, 
  641.  
  642.    o  lifetime_rec INTEGER, - in seconds, or reserved value for       INDEFINITE 
  643.  
  644.    o  delegated_cred_handle OCTET STRING, 
  645.  
  646.    o  output_token OCTET STRING -NULL or token to pass to context 
  647.  
  648.  
  649.  
  650. Linn                                                           [Page 26] 
  651.  RFC 1508               Generic Security Interface         September 1993 
  652.  
  653.        initiator 
  654.  
  655.    This call may block pending network interactions for those mech_types    in which a directory service or other network entity must be    consulted on behalf of a context acceptor in order to validate a    received input_token. 
  656.  
  657.    Return major_status codes: 
  658.  
  659.    o  GSS_COMPLETE indicates that context-level data structures were       successfully initialized, and that per-message processing can now       be performed in conjunction with this context. 
  660.  
  661.    o  GSS_CONTINUE_NEEDED indicates that control information in the       returned output_token must be sent to the initiator, and that a       response must be received and passed as the input_token argument       to a continuation call to GSS_Accept_sec_context(), before per-       message processing can be performed in conjunction with this       context. 
  662.  
  663.    o  GSS_DEFECTIVE_TOKEN indicates that consistency checks performed on       the input_token failed, preventing further processing from being       performed based on that token. 
  664.  
  665.    o  GSS_DEFECTIVE_CREDENTIAL indicates that consistency checks       performed on the credential structure referenced by       acceptor_cred_handle failed, preventing further processing from       being performed using that credential structure. 
  666.  
  667.    o  GSS_BAD_SIG indicates that the received input_token contains an       incorrect signature, so context setup cannot be accomplished. 
  668.  
  669.    o  GSS_DUPLICATE_TOKEN indicates that the signature on the received       input_token was correct, but that the input_token was recognized       as a duplicate of an input_token already processed. No new context       is established. 
  670.  
  671.    o  GSS_OLD_TOKEN indicates that the signature on the received       input_token was correct, but that the input_token is too old to be       checked for duplication against previously-processed input_tokens.       No new context is established. 
  672.  
  673.    o  GSS_NO_CRED indicates that no context was established, either       because the input cred_handle was invalid, because the referenced       credentials are valid for context initiator use only, or because       the caller lacks authorization to access the referenced       credentials. 
  674.  
  675.  
  676.  
  677.  Linn                                                           [Page 27] 
  678.  RFC 1508               Generic Security Interface         September 1993 
  679.  
  680.     o  GSS_CREDENTIALS_EXPIRED indicates that the credentials provided       through the input acceptor_cred_handle argument are no longer       valid, so context establishment cannot be completed. 
  681.  
  682.    o  GSS_BAD_BINDINGS indicates that a mismatch between the caller-       provided chan_bindings and those extracted from the input_token       was detected, signifying a security-relevant event and preventing       context establishment. 
  683.  
  684.    o GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided; this major status will be       returned only for successor calls following GSS_CONTINUE_NEEDED       status returns. 
  685.  
  686.    o  GSS_FAILURE indicates that context setup could not be accomplished       for reasons unspecified at the GSS-API level, and that no       interface-defined recovery action is available. 
  687.  
  688.    The GSS_Accept_sec_context()  routine is used by a context target.    Using information in the credentials structure referenced by the    input acceptor_cred_handle, it verifies the incoming input_token and    (following the successful completion of a context establishment    sequence) returns the authenticated src_name and the mech_type used.    The acceptor_cred_handle must correspond to the same valid    credentials structure on the initial call to GSS_Accept_sec_context()    and on any successor calls resulting from GSS_CONTINUE_NEEDED status    returns; different protocol sequences modeled by the    GSS_CONTINUE_NEEDED mechanism will require access to credentials at    different points in the context establishment sequence. 
  689.  
  690.    The input_context_handle argument is 0, specifying "not yet    assigned", on the first GSS_Accept_sec_context()  call relating to a    given context. That call returns an output_context_handle for future    references to this context; when continuation attempts to    GSS_Accept_sec_context()  are needed to perform context    establishment, that handle value will be entered into the    input_context_handle argument. 
  691.  
  692.    The chan_bindings argument is used by the caller to provide    information binding the security context to security-related    characteristics (e.g., addresses, cryptographic keys) of the    underlying communications channel. See Section 1.1.6 of this document    for more discussion of this argument's usage. 
  693.  
  694.    The returned state results (deleg_state, mutual_state,    replay_det_state, and sequence_state) reflect the same context state    values as returned to GSS_Init_sec_context()'s  caller at the    initiator system. 
  695.  
  696.  
  697.  
  698. Linn                                                           [Page 28] 
  699.  RFC 1508               Generic Security Interface         September 1993 
  700.  
  701.     The conf_avail return value indicates whether the context supports    per-message confidentiality services, and so informs the caller    whether or not a request for encryption through the conf_req_flag    input to GSS_Seal()  can be honored. In similar fashion, the    integ_avail return value indicates whether per-message integrity    services are available (through either GSS_Sign()  or GSS_Seal())  on    the established context. 
  702.  
  703.    The lifetime_rec return value indicates the length of time for which    the context will be valid, expressed as an offset from the present.    The values of deleg_state, mutual_state, replay_det_state,    sequence_state, conf_avail, integ_avail, and lifetime_rec are    undefined unless the accompanying major_status indicates COMPLETE. 
  704.  
  705.    The delegated_cred_handle result is significant only when deleg_state    is TRUE, and provides a means for the target to reference the    delegated credentials. The output_token result, when non-NULL,    provides a context-level token to be returned to the context    initiator to continue a multi-step context establishment sequence. As    noted with GSS_Init_sec_context(),  any returned token should be    transferred to the context's peer (in this case, the context    initiator), independent of the value of the accompanying returned    major_status. 
  706.  
  707.    Note: A target must be able to distinguish a context-level    input_token, which is passed to GSS_Accept_sec_context(),  from the    per-message data elements passed to GSS_Verify()  or GSS_Unseal().    These data elements may arrive in a single application message, and    GSS_Accept_sec_context()  must be performed before per-message    processing can be performed successfully. 
  708.  
  709. 2.2.3. GSS_Delete_sec_context call 
  710.  
  711.    Input: 
  712.  
  713.    o  context_handle INTEGER 
  714.  
  715.    Outputs: 
  716.  
  717.    o  major_status INTEGER, 
  718.  
  719.    o  minor_status INTEGER, 
  720.  
  721.    o  output_context_token OCTET STRING 
  722.  
  723.    Return major_status codes: 
  724.  
  725.  
  726.  
  727.  
  728.  
  729. Linn                                                           [Page 29] 
  730.  RFC 1508               Generic Security Interface         September 1993 
  731.  
  732.     o  GSS_COMPLETE indicates that the context was recognized, that       relevant context-specific information was flushed, and that the       returned output_context_token is ready for transfer to the       context's peer. 
  733.  
  734.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provide, so no deletion was performed. 
  735.  
  736.    o  GSS_FAILURE indicates that the context is recognized, but that the       GSS_Delete_sec_context()  operation could not be performed for       reasons unspecified at the GSS-API level. 
  737.  
  738.    This call may block pending network interactions for mech_types in    which active notification must be made to a central server when a    security context is to be deleted. 
  739.  
  740.    This call can be made by either peer in a security context, to flush    context-specific information and to return an output_context_token    which can be passed to the context's peer informing it that the    peer's corresponding context information can also be flushed. (Once a    context is established, the peers involved are expected to retain    cached credential and context-related information until the    information's expiration time is reached or until a    GSS_Delete_sec_context() call is made.) Attempts to perform per-    message processing on a deleted context will result in error returns. 
  741.  
  742. 2.2.4.  GSS_Process_context_token call 
  743.  
  744.    Inputs: 
  745.  
  746.    o  context_handle INTEGER, 
  747.  
  748.    o  input_context_token OCTET STRING 
  749.  
  750.    Outputs: 
  751.  
  752.    o  major_status INTEGER, 
  753.  
  754.    o  minor_status INTEGER, 
  755.  
  756.    Return major_status codes: 
  757.  
  758.    o  GSS_COMPLETE indicates that the input_context_token was       successfully processed in conjunction with the context referenced       by context_handle. 
  759.  
  760.    o  GSS_DEFECTIVE_TOKEN indicates that consistency checks performed on       the received context_token failed, preventing further processing 
  761.  
  762.  
  763.  
  764. Linn                                                           [Page 30] 
  765.  RFC 1508               Generic Security Interface         September 1993 
  766.  
  767.        from being performed with that token. 
  768.  
  769.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  770.  
  771.    o  GSS_FAILURE indicates that the context is recognized, but that the       GSS_Process_context_token()  operation could not be performed for       reasons unspecified at the GSS-API level. 
  772.  
  773.    This call is used to process context_tokens received from a peer once    a context has been established, with corresponding impact on    context-level state information. One use for this facility is    processing of the context_tokens generated by    GSS_Delete_sec_context();  GSS_Process_context_token() will not block    pending network interactions for that purpose. Another use is to    process tokens indicating remote-peer context establishment failures    after the point where the local GSS-API implementation has already    indicated GSS_COMPLETE status. 
  774.  
  775. 2.2.5.  GSS_Context_time call 
  776.  
  777.    Input: 
  778.  
  779.    o  context_handle INTEGER, 
  780.  
  781.    Outputs: 
  782.  
  783.    o  major_status INTEGER, 
  784.  
  785.    o  minor_status INTEGER, 
  786.  
  787.    o  lifetime_rec INTEGER - in seconds, or reserved value for       INDEFINITE 
  788.  
  789.    Return major_status codes: 
  790.  
  791.    o  GSS_COMPLETE indicates that the referenced context is valid, and       will remain valid for the amount of time indicated in       lifetime_rec. 
  792.  
  793.    o  GSS_CONTEXT_EXPIRED indicates that data items related to the       referenced context have expired. 
  794.  
  795.    o  GSS_CREDENTIALS_EXPIRED indicates that the context is recognized,       but that its associated credentials have expired. 
  796.  
  797.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  798.  
  799.  
  800.  
  801. Linn                                                           [Page 31] 
  802.  RFC 1508               Generic Security Interface         September 1993 
  803.  
  804.     o  GSS_FAILURE indicates that the requested operation failed for       reasons unspecified at the GSS-API level. 
  805.  
  806.    This call is used to determine the amount of time for which a    currently established context will remain valid. 
  807.  
  808. 2.3.  Per-message calls 
  809.  
  810.    This group of calls is used to perform per-message protection    processing on an established security context. None of these calls    block pending network interactions. These calls may be invoked by a    context's initiator or by the context's target.  The four members of    this group should be considered as two pairs; the output from    GSS_Sign()  is properly input to GSS_Verify(),  and the output from    GSS_Seal() is properly input to GSS_Unseal(). 
  811.  
  812.    GSS_Sign()  and GSS_Verify() support data origin authentication and    data integrity services. When GSS_Sign()  is invoked on an input    message, it yields a per-message token containing data items which    allow underlying mechanisms to provide the specified security    services. The original message, along with the generated per-message    token, is passed to the remote peer; these two data elements are    processed by GSS_Verify(),  which validates the message in    conjunction with the separate token. 
  813.  
  814.    GSS_Seal()  and GSS_Unseal() support caller-requested confidentiality    in addition to the data origin authentication and data integrity    services offered by GSS_Sign()  and GSS_Verify(). GSS_Seal()  outputs    a single data element, encapsulating optionally enciphered user data    as well as associated token data items.  The data element output from    GSS_Seal()  is passed to the remote peer and processed by    GSS_Unseal()  at that system. GSS_Unseal() combines decipherment (as    required) with validation of data items related to authentication and    integrity. 
  815.  
  816. 2.3.1.  GSS_Sign call 
  817.  
  818.    Inputs: 
  819.  
  820.    o  context_handle INTEGER, 
  821.  
  822.    o  qop_req INTEGER,-0 specifies default QOP 
  823.  
  824.    o  message OCTET STRING 
  825.  
  826.    Outputs: 
  827.  
  828.    o  major_status INTEGER, 
  829.  
  830.  
  831.  
  832. Linn                                                           [Page 32] 
  833.  RFC 1508               Generic Security Interface         September 1993 
  834.  
  835.     o  minor_status INTEGER, 
  836.  
  837.    o  per_msg_token OCTET STRING 
  838.  
  839.    Return major_status codes: 
  840.  
  841.    o  GSS_COMPLETE indicates that a signature, suitable for an       established security context, was successfully applied and that       the message and corresponding per_msg_token are ready for       transmission. 
  842.  
  843.    o  GSS_CONTEXT_EXPIRED indicates that context-related data items have       expired, so that the requested operation cannot be performed. 
  844.  
  845.    o  GSS_CREDENTIALS_EXPIRED indicates that the context is recognized,       but that its associated credentials have expired, so that the       requested operation cannot be performed. 
  846.  
  847.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  848.  
  849.    o  GSS_FAILURE indicates that the context is recognized, but that the       requested operation could not be performed for reasons unspecified       at the GSS-API level. 
  850.  
  851.    Using the security context referenced by context_handle, apply a    signature to the input message (along with timestamps and/or other    data included in support of mech_type-specific mechanisms) and return    the result in per_msg_token. The qop_req parameter allows quality-    of-protection control. The caller passes the message and the    per_msg_token to the target. 
  852.  
  853.    The GSS_Sign()  function completes before the message and    per_msg_token is sent to the peer; successful application of    GSS_Sign()  does not guarantee that a corresponding GSS_Verify() has    been (or can necessarily be) performed successfully when the message    arrives at the destination. 
  854.  
  855. 2.3.2.  GSS_Verify call 
  856.  
  857.    Inputs: 
  858.  
  859.    o  context_handle INTEGER, 
  860.  
  861.    o  message OCTET STRING, 
  862.  
  863.    o  per_msg_token OCTET STRING 
  864.  
  865.  
  866.  
  867.  Linn                                                           [Page 33] 
  868.  RFC 1508               Generic Security Interface         September 1993 
  869.  
  870.     Outputs: 
  871.  
  872.    o  qop_state INTEGER, 
  873.  
  874.    o  major_status INTEGER, 
  875.  
  876.    o  minor_status INTEGER, 
  877.  
  878.    Return major_status codes: 
  879.  
  880.    o  GSS_COMPLETE indicates that the message was successfully verified. 
  881.  
  882.    o  GSS_DEFECTIVE_TOKEN indicates that consistency checks performed on       the received per_msg_token failed, preventing further processing       from being performed with that token. 
  883.  
  884.    o  GSS_BAD_SIG indicates that the received per_msg_token contains an       incorrect signature for the message. 
  885.  
  886.    o  GSS_DUPLICATE_TOKEN, GSS_OLD_TOKEN, and GSS_UNSEQ_TOKEN values       appear in conjunction with the optional per-message replay       detection features described in Section 1.2.3; their semantics are       described in that section. 
  887.  
  888.    o  GSS_CONTEXT_EXPIRED indicates that context-related data items have       expired, so that the requested operation cannot be performed. 
  889.  
  890.    o  GSS_CREDENTIALS_EXPIRED indicates that the context is recognized,       but that its associated credentials have expired, so that the       requested operation cannot be performed. 
  891.  
  892.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  893.  
  894.    o  GSS_FAILURE indicates that the context is recognized, but that the       GSS_Verify()  operation could not be performed for reasons       unspecified at the GSS-API level. 
  895.  
  896.    Using the security context referenced by context_handle, verify that    the input per_msg_token contains an appropriate signature for the    input message, and apply any active replay detection or sequencing    features. Return an indication of the quality-of-protection applied    to the processed message in the qop_state result. 
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  Linn                                                           [Page 34] 
  905.  RFC 1508               Generic Security Interface         September 1993 
  906.  
  907.  2.3.3. GSS_Seal call 
  908.  
  909.    Inputs: 
  910.  
  911.    o  context_handle INTEGER, 
  912.  
  913.    o  conf_req_flag BOOLEAN, 
  914.  
  915.    o  qop_req INTEGER,-0 specifies default QOP 
  916.  
  917.    o  input_message OCTET STRING 
  918.  
  919.    Outputs: 
  920.  
  921.    o  major_status INTEGER, 
  922.  
  923.    o  minor_status INTEGER, 
  924.  
  925.    o  conf_state BOOLEAN, 
  926.  
  927.    o  output_message OCTET STRING 
  928.  
  929.    Return major_status codes: 
  930.  
  931.    o  GSS_COMPLETE indicates that the input_message was successfully       processed and that the output_message is ready for transmission. 
  932.  
  933.    o  GSS_CONTEXT_EXPIRED indicates that context-related data items have       expired, so that the requested operation cannot be performed. 
  934.  
  935.    o  GSS_CREDENTIALS_EXPIRED indicates that the context is recognized,       but that its associated credentials have expired, so that the       requested operation cannot be performed. 
  936.  
  937.    o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  938.  
  939.    o  GSS_FAILURE indicates that the context is recognized, but that the       GSS_Seal()  operation could not be performed for reasons       unspecified at the GSS-API level. 
  940.  
  941.    Performs the data origin authentication and data integrity functions    of GSS_Sign().  If the input conf_req_flag is TRUE, requests that    confidentiality be applied to the input_message.  Confidentiality may    not be supported in all mech_types or by all implementations; the    returned conf_state flag indicates whether confidentiality was    provided for the input_message. The qop_req parameter allows    quality-of-protection control. 
  942.  
  943.  
  944.  
  945. Linn                                                           [Page 35] 
  946.  RFC 1508               Generic Security Interface         September 1993 
  947.  
  948.     In all cases, the GSS_Seal()  call yields a single output_message    data element containing (optionally enciphered) user data as well as    control information. 
  949.  
  950. 2.3.4. GSS_Unseal call 
  951.  
  952.    Inputs: 
  953.  
  954.    o  context_handle INTEGER, 
  955.  
  956.    o  input_message OCTET STRING 
  957.  
  958.    Outputs: 
  959.  
  960.    o  conf_state BOOLEAN, 
  961.  
  962.    o  qop_state INTEGER, 
  963.  
  964.    o  major_status INTEGER, 
  965.  
  966.    o  minor_status INTEGER, 
  967.  
  968.    o  output_message OCTET STRING 
  969.  
  970.    Return major_status codes: 
  971.  
  972.    o  GSS_COMPLETE indicates that the input_message was successfully       processed and that the resulting output_message is available. 
  973.  
  974.    o  GSS_DEFECTIVE_TOKEN indicates that consistency checks performed on       the per_msg_token extracted from the input_message failed,       preventing further processing from being performed. 
  975.  
  976.    o  GSS_BAD_SIG indicates that an incorrect signature was detected for       the message. 
  977.  
  978.    o  GSS_DUPLICATE_TOKEN, GSS_OLD_TOKEN, and GSS_UNSEQ_TOKEN values       appear in conjunction with the optional per-message replay       detection features described in Section 1.2.3; their semantics are       described in that section. 
  979.  
  980.    o  GSS_CONTEXT_EXPIRED indicates that context-related data items have       expired, so that the requested operation cannot be performed. 
  981.  
  982.    o  GSS_CREDENTIALS_EXPIRED indicates that the context is recognized,       but that its associated credentials have expired, so that the       requested operation cannot be performed. 
  983.  
  984.  
  985.  
  986.  Linn                                                           [Page 36] 
  987.  RFC 1508               Generic Security Interface         September 1993 
  988.  
  989.     o  GSS_NO_CONTEXT indicates that no valid context was recognized for       the input context_handle provided. 
  990.  
  991.    o  GSS_FAILURE indicates that the context is recognized, but that the       GSS_Unseal()  operation could not be performed for reasons       unspecified at the GSS-API level. 
  992.  
  993.    Processes a data element generated (and optionally enciphered) by    GSS_Seal(),  provided as input_message. The returned conf_state value    indicates whether confidentiality was applied to the input_message.    If conf_state is TRUE, GSS_Unseal()  deciphers the input_message.    Returns an indication of the quality-of-protection applied to the    processed message in the qop_state result. GSS_Seal()  performs the    data integrity and data origin authentication checking functions of    GSS_Verify()  on the plaintext data. Plaintext data is returned in    output_message. 
  994.  
  995. 2.4.  Support calls 
  996.  
  997.    This group of calls provides support functions useful to GSS-API    callers, independent of the state of established contexts. Their    characterization with regard to blocking or non-blocking status in    terms of network interactions is unspecified. 
  998.  
  999. 2.4.1.  GSS_Display_status call 
  1000.  
  1001.    Inputs: 
  1002.  
  1003.    o  status_value INTEGER,-GSS-API major_status or minor_status       return value 
  1004.  
  1005.    o  status_type INTEGER,-1 if major_status, 2 if minor_status 
  1006.  
  1007.    o  mech_type OBJECT IDENTIFIER-mech_type to be used for minor_       status translation 
  1008.  
  1009.    Outputs: 
  1010.  
  1011.    o  major_status INTEGER, 
  1012.  
  1013.    o  minor_status INTEGER, 
  1014.  
  1015.    o  status_string_set SET OF OCTET STRING 
  1016.  
  1017.    Return major_status codes: 
  1018.  
  1019.    o  GSS_COMPLETE indicates that a valid printable status       representation (possibly representing more than one status event 
  1020.  
  1021.  
  1022.  
  1023. Linn                                                           [Page 37] 
  1024.  RFC 1508               Generic Security Interface         September 1993 
  1025.  
  1026.        encoded within the status_value) is available in the returned       status_string_set. 
  1027.  
  1028.    o  GSS_BAD_MECH indicates that translation in accordance with an       unsupported mech_type was requested, so translation could not be       performed. 
  1029.  
  1030.    o  GSS_BAD_STATUS indicates that the input status_value was invalid,       or that the input status_type carried a value other than 1 or 2,       so translation could not be performed. 
  1031.  
  1032.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1033.  
  1034.    Provides a means for callers to translate GSS-API-returned major and    minor status codes into printable string representations. 
  1035.  
  1036. 2.4.2.  GSS_Indicate_mechs call 
  1037.  
  1038.    Input: 
  1039.  
  1040.    o  (none) 
  1041.  
  1042.    Outputs: 
  1043.  
  1044.    o  major_status INTEGER, 
  1045.  
  1046.    o  minor_status INTEGER, 
  1047.  
  1048.    o  mech_set SET OF OBJECT IDENTIFIER 
  1049.  
  1050.    Return major_status codes: 
  1051.  
  1052.    o  GSS_COMPLETE indicates that a set of available mechanisms has       been returned in mech_set. 
  1053.  
  1054.    o  GSS_FAILURE indicates that the requested operation could not       be performed for reasons unspecified at the GSS-API level. 
  1055.  
  1056.    Allows callers to determine the set of mechanism types available on    the local system. This call is intended for support of specialized    callers who need to request non-default mech_type sets from    GSS_Acquire_cred(),  and should not be needed by other callers. 
  1057.  
  1058. 2.4.3.  GSS_Compare_name call 
  1059.  
  1060.    Inputs: 
  1061.  
  1062.  
  1063.  
  1064.  Linn                                                           [Page 38] 
  1065.  RFC 1508               Generic Security Interface         September 1993 
  1066.  
  1067.     o  name1 INTERNAL NAME, 
  1068.  
  1069.    o  name2 INTERNAL NAME 
  1070.  
  1071.    Outputs: 
  1072.  
  1073.    o  major_status INTEGER, 
  1074.  
  1075.    o  minor_status INTEGER, 
  1076.  
  1077.    o  name_equal BOOLEAN 
  1078.  
  1079.    Return major_status codes: 
  1080.  
  1081.    o  GSS_COMPLETE indicates that name1 and name2 were comparable, and       that the name_equal result indicates whether name1 and name2 were       equal or unequal. 
  1082.  
  1083.    o  GSS_BAD_NAMETYPE indicates that one or both of name1 and name2       contained internal type specifiers uninterpretable by the       supporting GSS-API implementation, or that the two names' types       are different and incomparable, so the equality comparison could       not be completed. 
  1084.  
  1085.    o  GSS_BAD_NAME indicates that one or both of the input names was       ill-formed in terms of its internal type specifier, so the       equality comparison could not be completed. 
  1086.  
  1087.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1088.  
  1089.    Allows callers to compare two internal name representations for    equality. 
  1090.  
  1091. 2.4.4.  GSS_Display_name call 
  1092.  
  1093.    Inputs: 
  1094.  
  1095.    o  name INTERNAL NAME 
  1096.  
  1097.    Outputs: 
  1098.  
  1099.    o  major_status INTEGER, 
  1100.  
  1101.    o  minor_status INTEGER, 
  1102.  
  1103.    o  name_string OCTET STRING, 
  1104.  
  1105.  
  1106.  
  1107.  Linn                                                           [Page 39] 
  1108.  RFC 1508               Generic Security Interface         September 1993 
  1109.  
  1110.     o  name_type OBJECT IDENTIFIER 
  1111.  
  1112.    Return major_status codes: 
  1113.  
  1114.    o  GSS_COMPLETE indicates that a valid printable name representation       is available in the returned name_string. 
  1115.  
  1116.    o  GSS_BAD_NAMETYPE indicates that the provided name was of a type       uninterpretable by the supporting GSS-API implementation, so no       printable representation could be generated. 
  1117.  
  1118.    o  GSS_BAD_NAME indicates that the contents of the provided name were       inconsistent with the internally-indicated name type, so no       printable representation could be generated. 
  1119.  
  1120.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1121.  
  1122.    Allows callers to translate an internal name representation into a    printable form with associated namespace type descriptor. The syntax    of the printable form is a local matter. 
  1123.  
  1124. 2.4.5.  GSS_Import_name call 
  1125.  
  1126.    Inputs: 
  1127.  
  1128.    o  input_name_string OCTET STRING, 
  1129.  
  1130.    o  input_name_type OBJECT IDENTIFIER 
  1131.  
  1132.    Outputs: 
  1133.  
  1134.    o  major_status INTEGER, 
  1135.  
  1136.    o  minor_status INTEGER, 
  1137.  
  1138.    o  output_name INTERNAL NAME 
  1139.  
  1140.    Return major_status codes: 
  1141.  
  1142.    o  GSS_COMPLETE indicates that a valid name representation is output       in output_name and described by the type value in       output_name_type. 
  1143.  
  1144.    o  GSS_BAD_NAMETYPE indicates that the input_name_type is unsupported       by the GSS-API implementation, so the import operation could not       be completed. 
  1145.  
  1146.  
  1147.  
  1148.  Linn                                                           [Page 40] 
  1149.  RFC 1508               Generic Security Interface         September 1993 
  1150.  
  1151.     o  GSS_BAD_NAME indicates that the provided input_name_string is       ill-formed in terms of the input_name_type, so the import       operation could not be completed. 
  1152.  
  1153.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1154.  
  1155.    Allows callers to provide a printable name representation, designate    the type of namespace in conjunction with which it should be parsed,    and convert that printable representation to an internal form    suitable for input to other GSS-API routines.  The syntax of the    input_name is a local matter. 
  1156.  
  1157. 2.4.6. GSS_Release_name call 
  1158.  
  1159.    Inputs: 
  1160.  
  1161.    o  name INTERNAL NAME 
  1162.  
  1163.    Outputs: 
  1164.  
  1165.    o  major_status INTEGER, 
  1166.  
  1167.    o  minor_status INTEGER 
  1168.  
  1169.    Return major_status codes: 
  1170.  
  1171.    o  GSS_COMPLETE indicates that the storage associated with the input       name was successfully released. 
  1172.  
  1173.    o  GSS_BAD_NAME indicates that the input name argument did not       contain a valid name. 
  1174.  
  1175.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1176.  
  1177.    Allows callers to release the storage associated with an internal    name representation. 
  1178.  
  1179. 2.4.7. GSS_Release_buffer call 
  1180.  
  1181.    Inputs: 
  1182.  
  1183.    o  buffer OCTET STRING 
  1184.  
  1185.    Outputs: 
  1186.  
  1187.    o  major_status INTEGER, 
  1188.  
  1189.  
  1190.  
  1191. Linn                                                           [Page 41] 
  1192.  RFC 1508               Generic Security Interface         September 1993  
  1193.  
  1194.    o  minor_status INTEGER 
  1195.  
  1196.    Return major_status codes: 
  1197.  
  1198.    o  GSS_COMPLETE indicates that the storage associated with the input       buffer was successfully released. 
  1199.  
  1200.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1201.  
  1202.    Allows callers to release the storage associated with an OCTET STRING    buffer allocated by another GSS-API call. 
  1203.  
  1204. 2.4.8. GSS_Release_oid_set call 
  1205.  
  1206.    Inputs: 
  1207.  
  1208.    o  buffer SET OF OBJECT IDENTIFIER 
  1209.  
  1210.    Outputs: 
  1211.  
  1212.    o  major_status INTEGER, 
  1213.  
  1214.    o  minor_status INTEGER 
  1215.  
  1216.    Return major_status codes: 
  1217.  
  1218.    o  GSS_COMPLETE indicates that the storage associated with the input       object identifier set was successfully released. 
  1219.  
  1220.    o  GSS_FAILURE indicates that the requested operation could not be       performed for reasons unspecified at the GSS-API level. 
  1221.  
  1222.    Allows callers to release the storage associated with an object    identifier set object allocated by another GSS-API call. 
  1223.  
  1224. 3.  Mechanism-Specific Example Scenarios 
  1225.  
  1226.    This section provides illustrative overviews of the use of various    candidate mechanism types to support the GSS-API. These discussions    are intended primarily for readers familiar with specific security    technologies, demonstrating how GSS-API functions can be used and    implemented by candidate underlying mechanisms. They should not be    regarded as constrictive to implementations or as defining the only    means through which GSS-API functions can be realized with a    particular underlying technology, and do not demonstrate all GSS-API    features with each technology. 
  1227.  
  1228.  
  1229.  
  1230.  Linn                                                           [Page 42] 
  1231.  RFC 1508               Generic Security Interface         September 1993 
  1232.  
  1233.  3.1. Kerberos V5, single-TGT 
  1234.  
  1235.    OS-specific login functions yield a TGT to the local realm Kerberos    server; TGT is placed in a credentials structure for the client.    Client calls GSS_Acquire_cred()  to acquire a cred_handle in order to    reference the credentials for use in establishing security contexts. 
  1236.  
  1237.    Client calls GSS_Init_sec_context().  If the requested service is    located in a different realm, GSS_Init_sec_context()  gets the    necessary TGT/key pairs needed to traverse the path from local to    target realm; these data are placed in the owner's TGT cache. After    any needed remote realm resolution, GSS_Init_sec_context()  yields a    service ticket to the requested service with a corresponding session    key; these data are stored in conjunction with the context. GSS-API    code sends KRB_TGS_REQ request(s) and receives KRB_TGS_REP    response(s) (in the successful case) or KRB_ERROR. 
  1238.  
  1239.    Assuming success, GSS_Init_sec_context()  builds a Kerberos-formatted    KRB_AP_REQ message, and returns it in output_token.  The client sends    the output_token to the service. 
  1240.  
  1241.    The service passes the received token as the input_token argument to    GSS_Accept_sec_context(),  which verifies the authenticator, provides    the service with the client's authenticated name, and returns an    output_context_handle. 
  1242.  
  1243.    Both parties now hold the session key associated with the service    ticket, and can use this key in subsequent GSS_Sign(), GSS_Verify(),    GSS_Seal(), and GSS_Unseal() operations. 
  1244.  
  1245. 3.2. Kerberos V5, double-TGT 
  1246.  
  1247.    TGT acquisition as above. 
  1248.  
  1249.    Note: To avoid unnecessary frequent invocations of error paths when    implementing the GSS-API atop Kerberos V5, it seems appropriate to    represent "single-TGT K-V5" and "double-TGT K-V5" with separate    mech_types, and this discussion makes that assumption. 
  1250.  
  1251.    Based on the (specified or defaulted) mech_type,    GSS_Init_sec_context()  determines that the double-TGT protocol    should be employed for the specified target. GSS_Init_sec_context()    returns GSS_CONTINUE_NEEDED major_status, and its returned    output_token contains a request to the service for the service's TGT.    (If a service TGT with suitably long remaining lifetime already    exists in a cache, it may be usable, obviating the need for this    step.) The client passes the output_token to the service.  Note: this    scenario illustrates a different use for the GSS_CONTINUE_NEEDED 
  1252.  
  1253.  
  1254.  
  1255. Linn                                                           [Page 43] 
  1256.  RFC 1508               Generic Security Interface         September 1993 
  1257.  
  1258.     status return facility than for support of mutual authentication;    note that both uses can coexist as successive operations within a    single context establishment operation. 
  1259.  
  1260.    The service passes the received token as the input_token argument to    GSS_Accept_sec_context(),  which recognizes it as a request for TGT.    (Note that current Kerberos V5 defines no intra-protocol mechanism to    represent such a request.) GSS_Accept_sec_context()  returns    GSS_CONTINUE_NEEDED major_status and provides the service's TGT in    its output_token. The service sends the output_token to the client. 
  1261.  
  1262.    The client passes the received token as the input_token argument to a    continuation of GSS_Init_sec_context(). GSS_Init_sec_context() caches    the received service TGT and uses it as part of a service ticket    request to the Kerberos authentication server, storing the returned    service ticket and session key in conjunction with the context.    GSS_Init_sec_context()  builds a Kerberos-formatted authenticator,    and returns it in output_token along with GSS_COMPLETE return    major_status. The client sends the output_token to the service. 
  1263.  
  1264.    Service passes the received token as the input_token argument to a    continuation call to GSS_Accept_sec_context().    GSS_Accept_sec_context()  verifies the authenticator, provides the    service with the client's authenticated name, and returns    major_status GSS_COMPLETE. 
  1265.  
  1266.    GSS_Sign(),  GSS_Verify(), GSS_Seal(), and GSS_Unseal()  as above. 
  1267.  
  1268. 3.3.  X.509 Authentication Framework 
  1269.  
  1270.    This example illustrates use of the GSS-API in conjunction with    public-key mechanisms, consistent with the X.509 Directory    Authentication Framework. 
  1271.  
  1272.    The GSS_Acquire_cred()  call establishes a credentials structure,    making the client's private key accessible for use on behalf of the    client. 
  1273.  
  1274.    The client calls GSS_Init_sec_context(),  which interrogates the    Directory to acquire (and validate) a chain of public-key    certificates, thereby collecting the public key of the service.  The    certificate validation operation determines that suitable signatures    were applied by trusted authorities and that those certificates have    not expired. GSS_Init_sec_context()  generates a secret key for use    in per-message protection operations on the context, and enciphers    that secret key under the service's public key. 
  1275.  
  1276.    The enciphered secret key, along with an authenticator quantity 
  1277.  
  1278.  
  1279.  
  1280. Linn                                                           [Page 44] 
  1281.  RFC 1508               Generic Security Interface         September 1993 
  1282.  
  1283.     signed with the client's private key, is included in the output_token    from GSS_Init_sec_context().  The output_token also carries a    certification path, consisting of a certificate chain leading from    the service to the client; a variant approach would defer this path    resolution to be performed by the service instead of being asserted    by the client. The client application sends the output_token to the    service. 
  1284.  
  1285.    The service passes the received token as the input_token argument to    GSS_Accept_sec_context().  GSS_Accept_sec_context() validates the    certification path, and as a result determines a certified binding    between the client's distinguished name and the client's public key.    Given that public key, GSS_Accept_sec_context() can process the    input_token's authenticator quantity and verify that the client's    private key was used to sign the input_token. At this point, the    client is authenticated to the service. The service uses its private    key to decipher the enciphered secret key provided to it for per-    message protection operations on the context. 
  1286.  
  1287.    The client calls GSS_Sign()  or GSS_Seal() on a data message, which    causes per-message authentication, integrity, and (optional)    confidentiality facilities to be applied to that message. The service    uses the context's shared secret key to perform corresponding    GSS_Verify()  and GSS_Unseal() calls. 
  1288.  
  1289. 4.  Related Activities 
  1290.  
  1291.    In order to implement the GSS-API atop existing, emerging, and future    security mechanisms: 
  1292.  
  1293.       object identifiers must be assigned to candidate GSS-API       mechanisms and the name types which they support 
  1294.  
  1295.       concrete data element formats must be defined for candidate       mechanisms 
  1296.  
  1297.    Calling applications must implement formatting conventions which will    enable them to distinguish GSS-API tokens from other data carried in    their application protocols. 
  1298.  
  1299.    Concrete language bindings are required for the programming    environments in which the GSS-API is to be employed; such bindings    for the C language are available in an associated RFC. 
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  Linn                                                           [Page 45] 
  1308.  RFC 1508               Generic Security Interface         September 1993 
  1309.  
  1310.  5.  Acknowledgments 
  1311.  
  1312.    This proposal is the result of a collaborative effort.    Acknowledgments are due to the many members of the IETF Security Area    Advisory Group (SAAG) and the Common Authentication Technology (CAT)    Working Group for their contributions at meetings and by electronic    mail. Acknowledgments are also due to Kannan Alagappan, Doug Barlow,    Bill Brown, Cliff Kahn, Charlie Kaufman, Butler Lampson, Richard    Pitkin, Joe Tardo, and John Wray of Digital Equipment Corporation,    and John Carr, John Kohl, Jon Rochlis, Jeff Schiller, and Ted T'so of    MIT and Project Athena.  Joe Pato and Bill Sommerfeld of HP/Apollo,    Walt Tuvell of OSF, and Bill Griffith and Mike Merritt of AT&T,    provided inputs which helped to focus and clarify directions.    Precursor work by Richard Pitkin, presented to meetings of the    Trusted Systems Interoperability Group (TSIG), helped to demonstrate    the value of a generic, mechanism-independent security service API. 
  1313.  
  1314. 6. Security Considerations 
  1315.  
  1316.    Security issues are discussed throughout this memo. 
  1317.  
  1318. 7. Author's Address 
  1319.  
  1320.    John Linn    Geer Zolot Associates    One Main St.    Cambridge, MA  02142  USA 
  1321.  
  1322.    Phone: +1 617.374.3700    Email: Linn@gza.com 
  1323.  
  1324.  
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331.  
  1332.  
  1333.  
  1334.  
  1335.  
  1336.  
  1337.  
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344. Linn                                                           [Page 46] 
  1345.  RFC 1508               Generic Security Interface         September 1993 
  1346.  
  1347.  APPENDIX  A 
  1348.  
  1349. PACS AND AUTHORIZATION SERVICES 
  1350.  
  1351.    Consideration has been given to modifying the GSS-API service    interface to recognize and manipulate Privilege Attribute    Certificates (PACs) as in ECMA 138, carrying authorization data as a    side effect of establishing a security context, but no such    modifications have been incorporated at this time. This appendix    provides rationale for this decision and discusses compatibility    alternatives between PACs and the GSS-API which do not require that    PACs be made visible to GSS-API callers. 
  1352.  
  1353.    Existing candidate mechanism types such as Kerberos and X.509 do not    incorporate PAC manipulation features, and exclusion of such    mechanisms from the set of candidates equipped to fully support the    GSS-API seems inappropriate. Inclusion (and GSS-API visibility) of a    feature supported by only a limited number of mechanisms could    encourage the development of ostensibly portable applications which    would in fact have only limited portability. 
  1354.  
  1355.    The status quo, in which PACs are not visible across the GSS-API    interface, does not preclude implementations in which PACs are    carried transparently, within the tokens defined and used for certain    mech_types, and stored within peers' credentials and context-level    data structures. While invisible to API callers, such PACs could be    used by operating system or other local functions as inputs in the    course of mediating access requests made by callers. This course of    action allows dynamic selection of PAC contents, if such selection is    administratively-directed rather than caller-directed. 
  1356.  
  1357.    In a distributed computing environment, authentication must span    different systems; the need for such authentication provides    motivation for GSS-API definition and usage. Heterogeneous systems in    a network can intercommunicate, with globally authenticated names    comprising the common bond between locally defined access control    policies. Access control policies to which authentication provides    inputs are often local, or specific to particular operating systems    or environments. If the GSS-API made particular authorization models    visible across its service interface, its scope of application would    become less general. The current GSS-API paradigm is consistent with    the precedent set by Kerberos, neither defining the interpretation of    authorization-related data nor enforcing access controls based on    such data. 
  1358.  
  1359.    The GSS-API is a general interface, whose callers may reside inside    or outside any defined TCB or NTCB boundaries. Given this    characteristic, it appears more realistic to provide facilities which 
  1360.  
  1361.  
  1362.  
  1363. Linn                                                           [Page 47] 
  1364.  RFC 1508               Generic Security Interface         September 1993 
  1365.  
  1366.     provide "value-added" security services to its callers than to offer    facilities which enforce restrictions on those callers. Authorization    decisions must often be mediated below the GSS-API level in a local    manner against (or in spite of) applications, and cannot be    selectively invoked or omitted at those applications' discretion.    Given that the GSS-API's placement prevents it from providing a    comprehensive solution to the authorization issue, the value of a    partial contribution specific to particular authorization models is    debatable. 
  1367.  
  1368. APPENDIX  B 
  1369.  
  1370. MECHANISM-INDEPENDENT TOKEN FORMAT 
  1371.  
  1372.    This appendix specifies a mechanism-independent level of    encapsulating representation for the initial token of a GSS-API    context establishment sequence, incorporating an identifier of the    mechanism type to be used on that context. Use of this format (with    ASN.1-encoded data elements represented in BER, constrained in the    interests of parsing simplicity to the Distinguished Encoding Rule    (DER) BER subset defined in X.509, clause 8.7) is recommended to the    designers of GSS-API implementations based on various mechanisms, so    that tokens can be interpreted unambiguously at GSS-API peers. There    is no requirement that the mechanism-specific innerContextToken,    innerMsgToken, and sealedUserData data elements be encoded in ASN.1    BER. 
  1373.  
  1374.           -- optional top-level token definitions to           -- frame different mechanisms 
  1375.  
  1376.           GSS-API DEFINITIONS ::= 
  1377.  
  1378.           BEGIN 
  1379.  
  1380.           MechType ::= OBJECT IDENTIFIER           -- data structure definitions 
  1381.  
  1382.           -- callers must be able to distinguish among           -- InitialContextToken, SubsequentContextToken,           -- PerMsgToken, and SealedMessage data elements           -- based on the usage in which they occur 
  1383.  
  1384.           InitialContextToken ::=           -- option indication (delegation, etc.) indicated within           -- mechanism-specific token           [APPLICATION 0] IMPLICIT SEQUENCE {                   thisMech MechType,                   innerContextToken ANY DEFINED BY thisMech 
  1385.  
  1386.  
  1387.  
  1388. Linn                                                           [Page 48] 
  1389.  RFC 1508               Generic Security Interface         September 1993 
  1390.  
  1391.                       -- contents mechanism-specific                   } 
  1392.  
  1393.           SubsequentContextToken ::= innerContextToken ANY           -- interpretation based on predecessor InitialContextToken 
  1394.  
  1395.           PerMsgToken ::=           -- as emitted by GSS_Sign and processed by GSS_Verify                   innerMsgToken ANY 
  1396.  
  1397.           SealedMessage ::=           -- as emitted by GSS_Seal and processed by GSS_Unseal           -- includes internal, mechanism-defined indicator           -- of whether or not encrypted                   sealedUserData ANY 
  1398.  
  1399.           END 
  1400.  
  1401. APPENDIX  C 
  1402.  
  1403. MECHANISM DESIGN CONSTRAINTS 
  1404.  
  1405.    The following constraints on GSS-API mechanism designs are adopted in    response to observed caller protocol requirements, and adherence    thereto is anticipated in subsequent descriptions of GSS-API    mechanisms to be documented in standards-track Internet    specifications. 
  1406.  
  1407.    Use of the approach defined in Appendix B of this specification,    applying a mechanism type tag to the InitialContextToken, is    required. 
  1408.  
  1409.    It is strongly recommended that mechanisms offering per-message    protection services also offer at least one of the replay detection    and sequencing services, as mechanisms offering neither of the latter    will fail to satisfy recognized requirements of certain candidate    caller protocols. 
  1410.  
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417.  
  1418.  
  1419.  
  1420.  
  1421.  
  1422.  
  1423.  Linn                                                           [Page 49] 
  1424.  
  1425.