-
Notifications
You must be signed in to change notification settings - Fork 166
feat: LG13235 consume eipp data from sinatra #10618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
40bc058
bd3d18e
90403c3
8c0f520
ac8717e
91093cb
bece22c
fddc65f
3d24a05
4d9bbdf
5107a9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,6 +38,12 @@ module SupportedComponentValues | |
| implied_component_values: [P1], | ||
| requirements: [:biometric_comparison], | ||
| ).freeze | ||
| Pe = ComponentValue.new( | ||
aduth marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| name: 'Pe', | ||
| description: 'Enhanced In Person Proofing is required', | ||
| implied_component_values: [P1], | ||
|
||
| requirements: [:enhanced_ipp], | ||
| ).freeze | ||
|
|
||
| NAME_HASH = constants.map do |constant| | ||
| component_value = const_get(constant) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does
Pemean here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Proofing Enhanced?" 😆 I really put it out there for feedback. I initially had it as "P2" since it was a step up from the
P1component. I'm really happy to change it to whatever is more intuitive though.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh ok, I wonder what the convention was here? It isn't obvious to me what any of the other names in the file mean either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that
P2is the way to go. This isn't necessarily as step up from the base proofing experience since it is scoped to in-person. For the same reason proofing with a biometric was namedPbinstead ofP2.The naming convention for vectors of trust is described in [RFC 8485]. They are an upper-case letter followed by a lower-case letter or a number.