]> granicus.if.org Git - esp-idf/commitdiff
esp32: Add comment to ROM crypto functions recommending they not be used directly
authorAngus Gratton <angus@espressif.com>
Fri, 2 Sep 2016 08:39:57 +0000 (18:39 +1000)
committerWu Jian Gang <wujiangang@espressif.com>
Thu, 8 Sep 2016 08:47:24 +0000 (16:47 +0800)
components/esp32/include/rom/aes.h
components/esp32/include/rom/bigint.h
components/esp32/include/rom/sha.h

index 9fd0e5baea1ef5495f98f1717b847233aa82d78c..2f058f1c2581da9c257fbd744b18cd53a30e353f 100644 (file)
@@ -1,3 +1,10 @@
+/*
+  ROM functions for hardware AES support.
+
+  It is not recommended to use these functions directly,
+  use the wrapper functions in hwcrypto/aes.h instead.
+
+ */
 // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
index 461469cacd6006056e517007dd70a5c56dade3a3..624336695bfedc6dd82aafd1d9fe272a6100ebb5 100644 (file)
@@ -1,3 +1,10 @@
+/*
+  ROM functions for hardware bigint support.
+
+  It is not recommended to use these functions directly,
+  use the wrapper functions in hwcrypto/mpi.h instead.
+
+ */
 // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
index a5536bd3ba4de43d585059ff0f11afa17fd68b19..b35faa9a0749ec2c3459e4ec8dda13e1bf786783 100644 (file)
@@ -1,3 +1,10 @@
+/*
+  ROM functions for hardware SHA support.
+
+  It is not recommended to use these functions directly,
+  use the wrapper functions in hwcrypto/sha.h instead.
+
+ */
 // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
 //
 // Licensed under the Apache License, Version 2.0 (the "License");