Skip to content

Commit 2cfa818

Browse files
authored
Merge pull request #2 from OpenPhysical/develop
Test merge
2 parents e60b2e2 + c049f0e commit 2cfa818

19 files changed

+163
-1
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 4
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
end_of_line = lf

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# JetBrains user-specific
2+
.idea/**/workspace.xml
3+
.idea/**/tasks.xml
4+
.idea/**/usage.statistics.xml
5+
.idea/**/dictionaries
6+
.idea/**/shelf
7+
8+
# JetBrains generated files
9+
.idea/**/contentModel.xml
10+
11+
# JetBrains Sensitive or high-churn files
12+
.idea/**/dataSources/
13+
.idea/**/dataSources.ids
14+
.idea/**/dataSources.local.xml
15+
.idea/**/sqlDataSources.xml
16+
.idea/**/dynamic.xml
17+
.idea/**/uiDesigner.xml
18+
.idea/**/dbnavigator.xml

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/PivManual.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Standards/NIST.SP.800-73-4.pdf

1.86 MB
Binary file not shown.

Standards/NIST.SP.800-78-4.pdf

317 KB
Binary file not shown.

Test_Keys/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Test Keys
2+
3+
## Description
4+
This directory contains four test asymmetric private keys, and
5+
associated public keys. They represent the four permissible algorithms
6+
specified in SP-800-73-4, Table 6-2.
7+
8+
Note: Support for 1024-bit RSA was removed in SP-800-73-4, but
9+
is present here for completeness.
10+
11+
## Files
12+
13+
| Private Key | Public Key | Algorithm | Bits | Algorithm |
14+
|--------------|--------------|:----------------:|------|:---------:|
15+
| rsa-1024.key | rsa-1024.pub | RSA | 1024 | 0x06 |
16+
| rsa-2048.key | rsa-2048.pub | RSA | 2048 | 0x07 |
17+
| ec-256.key | ec-256.pub | ECC: Curve P-256 | 256 | 0x11 |
18+
| ec-384.key | ec-384.pub | ECC: Curve P-384 | 384 | 0x14 |
19+
20+
## References
21+
22+
[NIST SP-800-78-4](../Standards/NIST.SP.800-78-4.pdf): Cryptographic Algorithms and Key Sizes for Personal Identity Verification
23+
[NIST SP-800-73-4](../Standards/NIST.SP.800-73-4.pdf): Interfaces for Personal Identity Verification

0 commit comments

Comments
 (0)