generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 144
Test #2753
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
Draft
ttungle96
wants to merge
36
commits into
aws:xaes-256-gcm
Choose a base branch
from
ttungle96:test
base: xaes-256-gcm
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Test #2753
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
f5b1d82
xaes-256-gcm with evp_cipher
ttungle96 3b7d63a
xaes-256-gcm with evp_cipher
ttungle96 7b2af15
xaes-256-gcm with evp_cipher
ttungle96 debc4f8
xaes-256-gcm with evp_cipher
ttungle96 3d22930
xaes-256-gcm with evp_cipher
ttungle96 f5e7eae
full test coverage
ttungle96 66a9190
full test coverage
ttungle96 aa801fe
increase test coverage
ttungle96 7c58649
Merge branch 'xaes-256-gcm' into xaes-256-gcm
ttungle96 c33f280
improve test coverage
ttungle96 4610415
Merge branch 'xaes-256-gcm' of https://github.com/ttungle96/aws-lc in…
ttungle96 f0c9e37
increase test coverage
ttungle96 39e6b19
improve test coverage
ttungle96 20feacc
Final
ttungle96 88051b8
Final
ttungle96 fc0ac84
Final
ttungle96 98e525b
Final
ttungle96 1d4b4da
Final
ttungle96 feac2d1
Check test coveraga
ttungle96 2b909d6
Check test coverage
ttungle96 171cbc4
Check test coverage
ttungle96 0e1d143
test
ttungle96 74e4871
test
ttungle96 7b2c444
test
ttungle96 d0a323a
test
ttungle96 f101ae0
test
ttungle96 ff4a4c9
test
ttungle96 62f17a3
test
ttungle96 e1a4e08
test
ttungle96 96b5a7f
test
ttungle96 706b78d
test
ttungle96 9af4212
test
ttungle96 40f57e0
test
ttungle96 bf1c841
test
ttungle96 e0144fb
test
ttungle96 16b73fd
test
ttungle96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ | |
|
||
/* This file is generated by crypto/obj/objects.go. */ | ||
|
||
#define NUM_NID 999 | ||
#define NUM_NID 1001 | ||
|
||
static const uint8_t kObjectData[] = { | ||
/* NID_rsadsi */ | ||
|
@@ -7330,6 +7330,26 @@ static const uint8_t kObjectData[] = { | |
0xc9, | ||
0x7b, | ||
0x06, | ||
/* NID_xaes_256_gcm */ | ||
0x60, | ||
0x86, | ||
0x48, | ||
0x01, | ||
0x65, | ||
0x03, | ||
0x04, | ||
0x01, | ||
0x31, | ||
/* NID_xaes_256_gcm_kc */ | ||
0x60, | ||
0x86, | ||
0x48, | ||
0x01, | ||
0x65, | ||
0x03, | ||
0x04, | ||
0x01, | ||
0x32, | ||
}; | ||
|
||
static const ASN1_OBJECT kObjects[NUM_NID] = { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: unknown type name 'ASN1_OBJECT' [clang-diagnostic-error] static const ASN1_OBJECT kObjects[NUM_NID] = {
^ |
||
|
@@ -9017,6 +9037,10 @@ static const ASN1_OBJECT kObjects[NUM_NID] = { | |
{"ED25519ph", "ED25519ph", NID_ED25519ph, 0, NULL, 0}, | ||
{"SecP384r1MLKEM1024", "SecP384r1MLKEM1024", NID_SecP384r1MLKEM1024, 9, | ||
&kObjectData[6360], 0}, | ||
{"id-xaes256-GCM", "xaes-256-gcm", NID_xaes_256_gcm, 9, &kObjectData[6369], | ||
0}, | ||
{"id-xaes256-GCM-KC", "xaes-256-gcm-kc", NID_xaes_256_gcm_kc, 9, | ||
&kObjectData[6378], 0}, | ||
}; | ||
|
||
static const uint16_t kNIDsInShortNameOrder[] = { | ||
|
@@ -9657,6 +9681,8 @@ static const uint16_t kNIDsInShortNameOrder[] = { | |
194 /* id-smime-spq */, | ||
250 /* id-smime-spq-ets-sqt-unotice */, | ||
249 /* id-smime-spq-ets-sqt-uri */, | ||
999 /* id-xaes256-GCM */, | ||
1000 /* id-xaes256-GCM-KC */, | ||
676 /* identified-organization */, | ||
461 /* info */, | ||
748 /* inhibitAnyPolicy */, | ||
|
@@ -10996,14 +11022,16 @@ static const uint16_t kNIDsInLongNameOrder[] = { | |
503 /* x500UniqueIdentifier */, | ||
158 /* x509Certificate */, | ||
160 /* x509Crl */, | ||
999 /* xaes-256-gcm */, | ||
1000 /* xaes-256-gcm-kc */, | ||
125 /* zlib compression */, | ||
}; | ||
|
||
static const uint16_t kNIDsInOIDOrder[] = { | ||
434 /* 0.9 (OBJ_data) */, | ||
182 /* 1.2 (OBJ_member_body) */, | ||
379 /* 1.3 (OBJ_org) */, | ||
676 /* 1.3 (OBJ_identified_organization) */, | ||
379 /* 1.3 (OBJ_org) */, | ||
11 /* 2.5 (OBJ_X500) */, | ||
647 /* 2.23 (OBJ_international_organizations) */, | ||
380 /* 1.3.6 (OBJ_dod) */, | ||
|
@@ -11711,6 +11739,8 @@ static const uint16_t kNIDsInOIDOrder[] = { | |
901 /* 2.16.840.1.101.3.4.1.46 (OBJ_aes_256_gcm) */, | ||
902 /* 2.16.840.1.101.3.4.1.47 (OBJ_aes_256_ccm) */, | ||
903 /* 2.16.840.1.101.3.4.1.48 (OBJ_id_aes256_wrap_pad) */, | ||
999 /* 2.16.840.1.101.3.4.1.49 (OBJ_xaes_256_gcm) */, | ||
1000 /* 2.16.840.1.101.3.4.1.50 (OBJ_xaes_256_gcm_kc) */, | ||
672 /* 2.16.840.1.101.3.4.2.1 (OBJ_sha256) */, | ||
673 /* 2.16.840.1.101.3.4.2.2 (OBJ_sha384) */, | ||
674 /* 2.16.840.1.101.3.4.2.3 (OBJ_sha512) */, | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -986,3 +986,5 @@ MLDSA65 995 | |
MLDSA87 996 | ||
ED25519ph 997 | ||
SecP384r1MLKEM1024 998 | ||
xaes_256_gcm 999 | ||
xaes_256_gcm_kc 1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
warning: unknown type name 'uint8_t' [clang-diagnostic-error]