diff --git a/pkg/tinycrypt/Makefile b/pkg/tinycrypt/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..ff862ffce51ebf3609759a083b4f1e7227cd359c
--- /dev/null
+++ b/pkg/tinycrypt/Makefile
@@ -0,0 +1,12 @@
+PKG_NAME=tinycrypt
+PKG_URL=https://github.com/01org/tinycrypt
+PKG_VERSION=3ea1a609e7aff9f2d8d13803e1076b7a8e551804
+PKG_LICENSE=BSD-3-Clause
+
+.PHONY: all
+
+all: git-download
+	"$(MAKE)" -C $(PKG_BUILDDIR)/lib/source/ \
+			  -f $(RIOTPKG)/tinycrypt/Makefile.$(PKG_NAME)
+
+include $(RIOTBASE)/pkg/pkg.mk
diff --git a/pkg/tinycrypt/Makefile.include b/pkg/tinycrypt/Makefile.include
new file mode 100644
index 0000000000000000000000000000000000000000..ac7a28bc30a6655a7931a53a78d6151fc2884e61
--- /dev/null
+++ b/pkg/tinycrypt/Makefile.include
@@ -0,0 +1 @@
+INCLUDES += -I$(PKGDIRBASE)/tinycrypt/lib/include
diff --git a/pkg/tinycrypt/Makefile.tinycrypt b/pkg/tinycrypt/Makefile.tinycrypt
new file mode 100644
index 0000000000000000000000000000000000000000..0d2f0c5271d1951d99daf945858d91023cf4cb01
--- /dev/null
+++ b/pkg/tinycrypt/Makefile.tinycrypt
@@ -0,0 +1,3 @@
+MODULE = tinycrypt
+
+include $(RIOTBASE)/Makefile.base
diff --git a/pkg/tinycrypt/doc.txt b/pkg/tinycrypt/doc.txt
new file mode 100644
index 0000000000000000000000000000000000000000..32c69306d0c044ad6c4b0eca7e761c6706940359
--- /dev/null
+++ b/pkg/tinycrypt/doc.txt
@@ -0,0 +1,6 @@
+/**
+ * @defgroup pkg_tinycrypt tinycrypt crypto library
+ * @ingroup  pkg
+ * @brief    Memory optimized crypto library for embedded devices
+ * @see      https://github.com/01org/tinycrypt
+ */