Rename poly1305_setkey() to poly1305_starts()

For consistency with the existing CMAC and HMAC APIs
diff --git a/include/mbedtls/poly1305.h b/include/mbedtls/poly1305.h
index c911b9f..f691915 100644
--- a/include/mbedtls/poly1305.h
+++ b/include/mbedtls/poly1305.h
@@ -81,7 +81,7 @@
  *                      or key are NULL.
  *                      Otherwise, 0 is returned to indicate success.
  */
-int mbedtls_poly1305_setkey( mbedtls_poly1305_context *ctx,
+int mbedtls_poly1305_starts( mbedtls_poly1305_context *ctx,
                              const unsigned char key[32] );
 
 /**