summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 10:09:39 +0800
committerGitHub <noreply@github.com>2020-09-23 21:09:39 -0500
commitaec8cf16025e92f1ff6947df7b45d9918f578a63 (patch)
treec10558ff6a3778054a40007cec6698721661b8c3
parent3e61d3c536c0344fdc6ce2813da3a3593965a1c7 (diff)
downloadspack-aec8cf16025e92f1ff6947df7b45d9918f578a63.tar.gz
spack-aec8cf16025e92f1ff6947df7b45d9918f578a63.tar.bz2
spack-aec8cf16025e92f1ff6947df7b45d9918f578a63.tar.xz
spack-aec8cf16025e92f1ff6947df7b45d9918f578a63.zip
Add new package: aeskeyfind (#18726)
-rw-r--r--var/spack/repos/builtin/packages/aeskeyfind/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/aeskeyfind/package.py b/var/spack/repos/builtin/packages/aeskeyfind/package.py
new file mode 100644
index 0000000000..fdcfad760a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/aeskeyfind/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Aeskeyfind(MakefilePackage):
+ """This program illustrates automatic techniques for locating 128-bit
+ and 256-bit AES keys in a captured memory image."""
+
+ homepage = "https://github.com/makomk/aeskeyfind"
+ git = "https://github.com/makomk/aeskeyfind.git"
+
+ version('master', branch='master')
+
+ def install(self, spec, prefix):
+ mkdirp(prefix.bin)
+ install('aeskeyfind', prefix.bin)