r26069: Import python bindings for credentials.
[samba.git] / source / auth / credentials / credentials.i
1 /* 
2    Unix SMB/CIFS implementation.
3    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
4    
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9    
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14    
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 %module(package="samba.credentials") credentials
20
21 %{
22
23 /* Include headers */
24 #include <stdint.h>
25 #include <stdbool.h>
26
27 #include "includes.h"
28 #include "auth/credentials/credentials.h"
29 typedef struct cli_credentials cli_credentials;
30 %}
31
32 %include "carrays.i"
33 %include "typemaps.i"
34
35 %typemap(default) struct cli_credentials * {
36     $1 = NULL;
37 }
38
39 %{
40 #include "librpc/gen_ndr/samr.h" /* for struct samr_Password */
41 %}
42
43 %typemap(out) struct samr_Password * {
44     $result = PyString_FromStringAndSize($1->hash, 16);
45 }
46
47 %rename(Credentials) cli_credentials;
48 typedef struct cli_credentials {
49     %extend {
50         cli_credentials() {
51             return cli_credentials_init(NULL);
52         }
53         ~cli_credentials() {
54             talloc_free($self);
55         }
56         /* username */
57         const char *get_username(void);
58         bool set_username(const char *value, 
59                           enum credentials_obtained=CRED_SPECIFIED);
60
61         /* password */
62         const char *get_password(void);
63         bool set_password(const char *val, 
64                           enum credentials_obtained=CRED_SPECIFIED);
65
66         /* domain */
67         const char *get_domain(void);
68         bool set_domain(const char *val, 
69                         enum credentials_obtained=CRED_SPECIFIED);
70
71         /* realm */
72         const char *get_realm(void);
73         bool set_realm(const char *val, 
74                        enum credentials_obtained=CRED_SPECIFIED);
75
76         void parse_string(const char *text,
77                        enum credentials_obtained=CRED_SPECIFIED);
78
79         /* bind dn */
80         const char *get_bind_dn(void);
81         bool set_bind_dn(const char *bind_dn);
82
83         /* workstation name */
84         const char *get_workstation(void);
85         bool set_workstation(const char *workstation, 
86                              enum credentials_obtained obtained=CRED_SPECIFIED);
87
88         void guess(void);
89         bool is_anonymous(void);
90
91         const struct samr_Password *get_nt_hash(TALLOC_CTX *mem_ctx);
92     }
93 } cli_credentials;