93d09d9d4a3b789f9e1933eb81fae57b8d2e6a57
[gssweb.git] / json_gssapi / src / commands / GSSUnwrap.h
1 /*
2  * Copyright (c) 2014, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #ifndef GSSUNWRAP_H
36 #define GSSUNWRAP_H
37
38 #include "GSSCommand.h"
39 #include "datamodel/GSSBuffer.h"
40 #include <gssapi/gssapi.h>
41
42 typedef OM_uint32 (KRB5_CALLCONV *gss_unwrap_type) (
43     OM_uint32 *,        /* minor_status */
44     gss_ctx_id_t,       /* context_handle */
45     gss_buffer_t,       /* input_message_buffer */
46     gss_buffer_t,       /* output_message_buffer */
47     int *,              /* conf_state */
48     gss_qop_t *);       /* qop_state */
49
50
51 class GSSUnwrap :  GSSCommand
52 {
53 public:
54     GSSUnwrap( gss_unwrap_type fn = &gss_unwrap ) : function(fn) {};
55     GSSUnwrap( JSONObject *params, gss_unwrap_type fn = &gss_unwrap);
56     
57     gss_unwrap_type getGSSFunction() { return(function); }
58     void setContextHandle ( gss_ctx_id_t context_handle ) { context = context_handle; }
59     void setInputMessage ( GSSBuffer* input ) { inputMessage.setValue(input->toString()); };
60     
61     gss_qop_t getQopState() const { return(qop_state); }
62     int getConfState() const { return(conf_state); }
63     GSSBuffer getInputMessage() const { return(inputMessage); }
64     GSSBuffer getOutputMessage() const { return(outputMessage); }
65     gss_ctx_id_t getContextHandle() const { return(context); }
66
67     virtual void execute();  
68     virtual JSONObject* toJSON();
69     
70 private:
71     gss_unwrap_type function;
72     OM_uint32 retVal;
73     OM_uint32 minor_status;
74     gss_ctx_id_t context;
75     gss_qop_t qop_state;
76     int conf_state;
77     
78     GSSBuffer inputMessage;
79     GSSBuffer outputMessage;
80     
81     bool loadParameters(JSONObject *params);
82 };
83
84 #endif // GSSUNWRAP_H