This file is indexed.

/usr/include/d/gtkd-3/glib/Hmac.d is in libgtkd-3-dev 3.7.5-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
 * This file is part of gtkD.
 *
 * gtkD is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or (at your option) any later version, with
 * some exceptions, please read the COPYING file.
 *
 * gtkD is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with gtkD; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
 */

// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage


module glib.Hmac;

private import glib.Bytes;
private import glib.ConstructionException;
private import glib.Str;
private import glib.c.functions;
public  import glib.c.types;
public  import gtkc.glibtypes;
private import gtkd.Loader;


/**
 * An opaque structure representing a HMAC operation.
 * To create a new GHmac, use g_hmac_new(). To free
 * a GHmac, use g_hmac_unref().
 *
 * Since: 2.30
 */
public class Hmac
{
	/** the main Gtk struct */
	protected GHmac* gHmac;
	protected bool ownedRef;

	/** Get the main Gtk struct */
	public GHmac* getHmacStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gHmac;
	}

	/** the main Gtk struct as a void* */
	protected void* getStruct()
	{
		return cast(void*)gHmac;
	}

	/**
	 * Sets our main struct and passes it to the parent class.
	 */
	public this (GHmac* gHmac, bool ownedRef = false)
	{
		this.gHmac = gHmac;
		this.ownedRef = ownedRef;
	}

	~this ()
	{
		if ( Linker.isLoaded(LIBRARY_GLIB) && ownedRef )
			g_hmac_unref(gHmac);
	}

	/**
	 * Gets the digest from checksum as a raw binary array and places it
	 * into buffer. The size of the digest depends on the type of checksum.
	 *
	 * Once this function has been called, the Hmac is closed and can
	 * no longer be updated with update().
	 *
	 * Params:
	 *     buffer = output buffer
	 *
	 * Since: 2.30
	 */
	public void getDigest(ref ubyte[] buffer)
	{
		size_t digestLen = buffer.length;

		g_hmac_get_digest(gHmac, buffer.ptr, &digestLen);

		buffer = buffer[0 .. digestLen];
	}

	/**
	 */

	/**
	 * Copies a #GHmac. If @hmac has been closed, by calling
	 * g_hmac_get_string() or g_hmac_get_digest(), the copied
	 * HMAC will be closed as well.
	 *
	 * Returns: the copy of the passed #GHmac. Use g_hmac_unref()
	 *     when finished using it.
	 *
	 * Since: 2.30
	 */
	public Hmac copy()
	{
		auto p = g_hmac_copy(gHmac);

		if(p is null)
		{
			return null;
		}

		return new Hmac(cast(GHmac*) p);
	}

	/**
	 * Gets the HMAC as an hexadecimal string.
	 *
	 * Once this function has been called the #GHmac can no longer be
	 * updated with g_hmac_update().
	 *
	 * The hexadecimal characters will be lower case.
	 *
	 * Returns: the hexadecimal representation of the HMAC. The
	 *     returned string is owned by the HMAC and should not be modified
	 *     or freed.
	 *
	 * Since: 2.30
	 */
	public string getString()
	{
		return Str.toString(g_hmac_get_string(gHmac));
	}

	/**
	 * Atomically increments the reference count of @hmac by one.
	 *
	 * This function is MT-safe and may be called from any thread.
	 *
	 * Returns: the passed in #GHmac.
	 *
	 * Since: 2.30
	 */
	public Hmac doref()
	{
		auto p = g_hmac_ref(gHmac);

		if(p is null)
		{
			return null;
		}

		return new Hmac(cast(GHmac*) p);
	}

	/**
	 * Atomically decrements the reference count of @hmac by one.
	 *
	 * If the reference count drops to 0, all keys and values will be
	 * destroyed, and all memory allocated by the hash table is released.
	 * This function is MT-safe and may be called from any thread.
	 * Frees the memory allocated for @hmac.
	 *
	 * Since: 2.30
	 */
	public void unref()
	{
		g_hmac_unref(gHmac);
	}

	/**
	 * Feeds @data into an existing #GHmac.
	 *
	 * The HMAC must still be open, that is g_hmac_get_string() or
	 * g_hmac_get_digest() must not have been called on @hmac.
	 *
	 * Params:
	 *     data = buffer used to compute the checksum
	 *
	 * Since: 2.30
	 */
	public void update(char[] data)
	{
		g_hmac_update(gHmac, data.ptr, cast(ptrdiff_t)data.length);
	}

	/**
	 * Creates a new #GHmac, using the digest algorithm @digest_type.
	 * If the @digest_type is not known, %NULL is returned.
	 * A #GHmac can be used to compute the HMAC of a key and an
	 * arbitrary binary blob, using different hashing algorithms.
	 *
	 * A #GHmac works by feeding a binary blob through g_hmac_update()
	 * until the data is complete; the digest can then be extracted
	 * using g_hmac_get_string(), which will return the checksum as a
	 * hexadecimal string; or g_hmac_get_digest(), which will return a
	 * array of raw bytes. Once either g_hmac_get_string() or
	 * g_hmac_get_digest() have been called on a #GHmac, the HMAC
	 * will be closed and it won't be possible to call g_hmac_update()
	 * on it anymore.
	 *
	 * Support for digests of type %G_CHECKSUM_SHA512 has been added in GLib 2.42.
	 * Support for %G_CHECKSUM_SHA384 was added in GLib 2.52.
	 *
	 * Params:
	 *     digestType = the desired type of digest
	 *     key = the key for the HMAC
	 *
	 * Returns: the newly created #GHmac, or %NULL.
	 *     Use g_hmac_unref() to free the memory allocated by it.
	 *
	 * Since: 2.30
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(GChecksumType digestType, char[] key)
	{
		auto p = g_hmac_new(digestType, key.ptr, cast(size_t)key.length);

		if(p is null)
		{
			throw new ConstructionException("null returned by new");
		}

		this(cast(GHmac*) p);
	}

	/**
	 * Computes the HMAC for a binary @data of @length. This is a
	 * convenience wrapper for g_hmac_new(), g_hmac_get_string()
	 * and g_hmac_unref().
	 *
	 * The hexadecimal string returned will be in lower case.
	 *
	 * Params:
	 *     digestType = a #GChecksumType to use for the HMAC
	 *     key = the key to use in the HMAC
	 *     data = binary blob to compute the HMAC of
	 *
	 * Returns: the HMAC of the binary data as a string in hexadecimal.
	 *     The returned string should be freed with g_free() when done using it.
	 *
	 * Since: 2.30
	 */
	public static string computeHmacForData(GChecksumType digestType, char[] key, char[] data)
	{
		auto retStr = g_compute_hmac_for_data(digestType, key.ptr, cast(size_t)key.length, data.ptr, cast(size_t)data.length);

		scope(exit) Str.freeString(retStr);
		return Str.toString(retStr);
	}

	/**
	 * Computes the HMAC for a string.
	 *
	 * The hexadecimal string returned will be in lower case.
	 *
	 * Params:
	 *     digestType = a #GChecksumType to use for the HMAC
	 *     key = the key to use in the HMAC
	 *     str = the string to compute the HMAC for
	 *
	 * Returns: the HMAC as a hexadecimal string.
	 *     The returned string should be freed with g_free()
	 *     when done using it.
	 *
	 * Since: 2.30
	 */
	public static string computeHmacForString(GChecksumType digestType, char[] key, string str)
	{
		auto retStr = g_compute_hmac_for_string(digestType, key.ptr, cast(size_t)key.length, Str.toStringz(str), cast(ptrdiff_t)str.length);

		scope(exit) Str.freeString(retStr);
		return Str.toString(retStr);
	}

	/**
	 * Computes the HMAC for a binary @data. This is a
	 * convenience wrapper for g_hmac_new(), g_hmac_get_string()
	 * and g_hmac_unref().
	 *
	 * The hexadecimal string returned will be in lower case.
	 *
	 * Params:
	 *     digestType = a #GChecksumType to use for the HMAC
	 *     key = the key to use in the HMAC
	 *     data = binary blob to compute the HMAC of
	 *
	 * Returns: the HMAC of the binary data as a string in hexadecimal.
	 *     The returned string should be freed with g_free() when done using it.
	 *
	 * Since: 2.50
	 */
	public static string computeHmacForBytes(GChecksumType digestType, Bytes key, Bytes data)
	{
		auto retStr = g_compute_hmac_for_bytes(digestType, (key is null) ? null : key.getBytesStruct(), (data is null) ? null : data.getBytesStruct());

		scope(exit) Str.freeString(retStr);
		return Str.toString(retStr);
	}
}