diff --git a/ecrire/auth/sha256.inc.php b/ecrire/auth/sha256.inc.php
index c38fe27e6903d90d232cc7b0adb03adc25629734..2618d13de2fd68d00110dca4a6318011cdf10b40 100644
--- a/ecrire/auth/sha256.inc.php
+++ b/ecrire/auth/sha256.inc.php
@@ -13,14 +13,3 @@
 function spip_sha256($str) {
 	return hash('sha256', $str);
 }
-
-/**
- * @param string $str Chaîne dont on veut calculer le SHA
- * @param bool $ig_func
- * @return string Le SHA de la chaîne
- * @deprecated 4.0
- * @see spip_sha256()
- */
-function _nano_sha256($str, $ig_func = true) {
-	return spip_sha256($str);
-}