c1d67bd15e9acfd0b1bbc867de5531aed4ae0b30
[jelmer/openchange.git] / utils / schemaIDGUID.c
1 /*
2    MAPI Implementation
3
4    OpenChange Project
5
6    Copyright (C) Julien Kerihuel 2006
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include <libmapi/libmapi.h>
23 #include <ldb.h>
24
25 static void usage(void)
26 {
27         printf("schemaIDGUID <base64 string>\n");
28         exit(0);
29 }
30
31 int main(int argc, char *argv[])
32 {
33         TALLOC_CTX      *mem_ctx;
34         DATA_BLOB       blob;
35         struct GUID     *guid;
36         char            *schemaIDGUID;
37
38         if (argc != 2) {
39                 usage();
40         }
41
42         mem_ctx = talloc_init("SchemaIDGUID");
43
44         blob = data_blob_talloc(mem_ctx, argv[1], strlen(argv[1])+1);
45         blob.length = ldb_base64_decode((char *)blob.data);
46         guid = (struct GUID *) blob.data;
47         schemaIDGUID = GUID_string(mem_ctx, guid);
48         printf("%s\n", schemaIDGUID);
49         return (0);
50 }