├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── TODO ├── autogen.sh ├── configure.ac ├── data └── mokutil ├── man ├── Makefile.am └── mokutil.1 └── src ├── Makefile.am ├── efi_hash.c ├── efi_hash.h ├── efi_x509.c ├── efi_x509.h ├── keyring.c ├── keyring.h ├── mokutil.c ├── mokutil.h ├── password-crypt.c ├── password-crypt.h ├── signature.h ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/configure.ac -------------------------------------------------------------------------------- /data/mokutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/data/mokutil -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | dist_man1_MANS = mokutil.1 2 | -------------------------------------------------------------------------------- /man/mokutil.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/man/mokutil.1 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/efi_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/efi_hash.c -------------------------------------------------------------------------------- /src/efi_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/efi_hash.h -------------------------------------------------------------------------------- /src/efi_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/efi_x509.c -------------------------------------------------------------------------------- /src/efi_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/efi_x509.h -------------------------------------------------------------------------------- /src/keyring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/keyring.c -------------------------------------------------------------------------------- /src/keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/keyring.h -------------------------------------------------------------------------------- /src/mokutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/mokutil.c -------------------------------------------------------------------------------- /src/mokutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/mokutil.h -------------------------------------------------------------------------------- /src/password-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/password-crypt.c -------------------------------------------------------------------------------- /src/password-crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/password-crypt.h -------------------------------------------------------------------------------- /src/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/signature.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcp/mokutil/HEAD/src/util.h --------------------------------------------------------------------------------