From: Jiewen Yao <jiewen.yao@intel.com>
To: edk2-devel@lists.01.org
Cc: Qin Long <qin.long@intel.com>, Chao Zhang <chao.b.zhang@intel.com>
Subject: [PATCH 0/6] Add password support
Date: Thu, 26 Jan 2017 19:50:12 +0800 [thread overview]
Message-ID: <1485431418-16540-1-git-send-email-jiewen.yao@intel.com> (raw)
This series patch adds password support in EDKII.
This password based user authentication is to verify user when a user
wants to enter BIOS setup page.
The detail information is added in [PATCH 5/6].
Cc: Qin Long <qin.long@intel.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiewen Yao <jiewen.yao@intel.com>
Jiewen Yao (6):
CryptoPkg:SmmCryptLib: Add real Pkcs5Pbkdf2.c.
SecurityPkg/dec: Add PcdPasswordCleared.
SecurityPkg/include: Add PlatformPasswordLib lib class.
SecurityPkg/PlatformPasswordLibNull: Add PlatformPasswordLib instance.
SecurityPkg/Password: Add Password based UserAuthentication modules.
SecurityPkg/dsc: add Password authentication module.
CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf | 2 +-
SecurityPkg/Include/Library/PlatformPasswordLib.h | 54 ++
SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.c | 84 +++
SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.inf | 44 ++
SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.uni | 24 +
SecurityPkg/Password/UserAuthentication/KeyLib.c | 209 ++++++
SecurityPkg/Password/UserAuthentication/KeyLib.h | 121 ++++
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.c | 718 ++++++++++++++++++++
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.h | 115 ++++
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.inf | 76 +++
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.uni | 20 +
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeExtra.uni | 20 +
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeFormset.h | 30 +
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxePassword.c | 300 ++++++++
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeStrings.uni | 29 +
SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeVfr.vfr | 38 ++
SecurityPkg/Password/UserAuthentication/UserAuthenticationGuid.h | 65 ++
SecurityPkg/Password/UserAuthentication/UserAuthenticationSmm.c | 672 ++++++++++++++++++
SecurityPkg/Password/UserAuthentication/UserAuthenticationSmm.inf | 74 ++
SecurityPkg/Password/UserAuthentication/UserAuthenticationSmmExtra.uni | 20 +
SecurityPkg/SecurityPkg.dec | 10 +
SecurityPkg/SecurityPkg.dsc | 7 +
SecurityPkg/SecurityPkg.uni | 10 +
23 files changed, 2741 insertions(+), 1 deletion(-)
create mode 100644 SecurityPkg/Include/Library/PlatformPasswordLib.h
create mode 100644 SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.c
create mode 100644 SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.inf
create mode 100644 SecurityPkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.uni
create mode 100644 SecurityPkg/Password/UserAuthentication/KeyLib.c
create mode 100644 SecurityPkg/Password/UserAuthentication/KeyLib.h
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.c
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.h
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.inf
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxe.uni
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeExtra.uni
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeFormset.h
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxePassword.c
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeStrings.uni
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationDxeVfr.vfr
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationGuid.h
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationSmm.c
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationSmm.inf
create mode 100644 SecurityPkg/Password/UserAuthentication/UserAuthenticationSmmExtra.uni
--
2.7.4.windows.1
next reply other threads:[~2017-01-26 11:50 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-26 11:50 Jiewen Yao [this message]
2017-01-26 11:50 ` [PATCH 1/6] CryptoPkg:SmmCryptLib: Add real Pkcs5Pbkdf2.c Jiewen Yao
2017-01-26 11:50 ` [PATCH 2/6] SecurityPkg/dec: Add PcdPasswordCleared Jiewen Yao
2017-01-26 11:50 ` [PATCH 3/6] SecurityPkg/include: Add PlatformPasswordLib lib class Jiewen Yao
2017-01-26 11:50 ` [PATCH 4/6] SecurityPkg/PlatformPasswordLibNull: Add PlatformPasswordLib instance Jiewen Yao
2017-01-26 11:50 ` [PATCH 5/6] SecurityPkg/Password: Add Password based UserAuthentication modules Jiewen Yao
2017-02-04 3:05 ` Zhang, Chao B
2017-02-04 3:07 ` Yao, Jiewen
2017-01-26 11:50 ` [PATCH 6/6] SecurityPkg/dsc: add Password authentication module Jiewen Yao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1485431418-16540-1-git-send-email-jiewen.yao@intel.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox