libpurple/ciphers/hmaccipher.c

branch
soc.2013.gobjectification
changeset 34965
9abd15d6da07
parent 34891
3882234d2097
child 35014
21864c2f543f
--- a/libpurple/ciphers/hmaccipher.c	Mon Sep 23 14:03:05 2013 +0530
+++ b/libpurple/ciphers/hmaccipher.c	Mon Sep 23 14:41:07 2013 +0530
@@ -207,12 +207,6 @@
 	return purple_hash_get_block_size(priv->hash);
 }
 
-static const gchar*
-purple_hmac_cipher_get_name(PurpleCipher *cipher)
-{
-	return "hmac";
-}
-
 /******************************************************************************
  * Object Stuff
  *****************************************************************************/
@@ -284,7 +278,6 @@
 	cipher_class->get_digest_size = purple_hmac_cipher_get_digest_size;
 	cipher_class->set_key = purple_hmac_cipher_set_key;
 	cipher_class->get_block_size = purple_hmac_cipher_get_block_size;
-	cipher_class->get_name = purple_hmac_cipher_get_name;
 
 	pspec = g_param_spec_object("hash", "hash", "hash", PURPLE_TYPE_HASH,
 								G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);

mercurial