Sat, 29 Jun 2013 22:10:18 +0530
Removed purple_conversation_[gs]et_data(). Used g_object_[gs]et_data() instead.
Removed data from PurpleConversationPrivate.
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
1 | /** |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
2 | * @file sha256.h Purple SHA256 Hash |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
3 | * @ingroup core |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
4 | */ |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
5 | |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
6 | /* purple |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
7 | * |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
8 | * Purple is the legal property of its developers, whose names are too numerous |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
10 | * source distribution. |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
11 | * |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
12 | * This program is free software; you can redistribute it and/or modify |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
13 | * it under the terms of the GNU General Public License as published by |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
14 | * the Free Software Foundation; either version 2 of the License, or |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
15 | * (at your option) any later version. |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
16 | * |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
17 | * This program is distributed in the hope that it will be useful, |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
20 | * GNU General Public License for more details. |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
21 | * |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
22 | * You should have received a copy of the GNU General Public License |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
23 | * along with this program; if not, write to the Free Software |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
25 | */ |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
26 | #ifndef PURPLE_SHA256_HASH_H |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
27 | #define PURPLE_SHA256_HASH_H |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
28 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
29 | #include "hash.h" |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
30 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
31 | #define PURPLE_TYPE_SHA256_HASH (purple_sha256_hash_get_gtype()) |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
32 | #define PURPLE_SHA256_HASH(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_SHA256_HASH, PurpleSHA256Hash)) |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
33 | #define PURPLE_SHA256_HASH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_SHA256_HASH, PurpleSHA256HashClass)) |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
34 | #define PURPLE_IS_SHA256_HASH(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_SHA256_HASH)) |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
35 | #define PURPLE_IS_SHA256_HASH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((obj), PURPLE_TYPE_SHA256_HASH)) |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
36 | #define PURPLE_SHA256_HASH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_SHA256_HASH, PurpleSHA256HashClass)) |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
37 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
38 | typedef struct _PurpleSHA256Hash PurpleSHA256Hash; |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
39 | typedef struct _PurpleSHA256HashClass PurpleSHA256HashClass; |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
40 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
41 | struct _PurpleSHA256Hash { |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
42 | PurpleHash gparent; |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
43 | |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
44 | void (*_purple_reserved1)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
45 | void (*_purple_reserved2)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
46 | void (*_purple_reserved3)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
47 | void (*_purple_reserved4)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
48 | }; |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
49 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
50 | struct _PurpleSHA256HashClass { |
|
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
51 | PurpleHashClass gparent; |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
52 | |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
53 | void (*_purple_reserved1)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
54 | void (*_purple_reserved2)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
55 | void (*_purple_reserved3)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
56 | void (*_purple_reserved4)(void); |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
57 | }; |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
58 | |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
59 | G_BEGIN_DECLS |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
60 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
61 | GType purple_sha256_hash_get_gtype(void); |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
62 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
63 | PurpleHash *purple_sha256_hash_new(void); |
|
34539
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
64 | |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
65 | G_END_DECLS |
|
26e080fb06bb
GObjectified gchecksum.c as PurpleSHA1Cipher, PurpleSHA256Cipher and PurpleMD5Cipher
Ankit Vani <a@nevitus.org>
parents:
diff
changeset
|
66 | |
|
34566
e0f887dee077
Split PurpleCipher into PurpleCipher and PurpleHash. Hashes will subclass PurpleHash.
Ankit Vani <a@nevitus.org>
parents:
34539
diff
changeset
|
67 | #endif /* PURPLE_SHA256_HASH_H */ |