Merge "Purge unsupported RSA key sizes from VTS tests" into oc-dev
This commit is contained in:
commit
bc970b089f
1 changed files with 3 additions and 3 deletions
|
@ -1329,7 +1329,7 @@ typedef KeymasterHidlTest GetKeyCharacteristicsTest;
|
|||
*/
|
||||
TEST_F(GetKeyCharacteristicsTest, SimpleRsa) {
|
||||
ASSERT_EQ(ErrorCode::OK, GenerateKey(AuthorizationSetBuilder()
|
||||
.RsaSigningKey(256, 3)
|
||||
.RsaSigningKey(1024, 3)
|
||||
.Digest(Digest::NONE)
|
||||
.Padding(PaddingMode::NONE)));
|
||||
|
||||
|
@ -2201,7 +2201,7 @@ typedef KeymasterHidlTest ExportKeyTest;
|
|||
*/
|
||||
TEST_F(ExportKeyTest, RsaUnsupportedKeyFormat) {
|
||||
ASSERT_EQ(ErrorCode::OK, GenerateKey(AuthorizationSetBuilder()
|
||||
.RsaSigningKey(256, 3)
|
||||
.RsaSigningKey(1024, 3)
|
||||
.Digest(Digest::NONE)
|
||||
.Padding(PaddingMode::NONE)));
|
||||
HidlBuf export_data;
|
||||
|
@ -2218,7 +2218,7 @@ TEST_F(ExportKeyTest, RsaUnsupportedKeyFormat) {
|
|||
TEST_F(ExportKeyTest, DISABLED_RsaCorruptedKeyBlob) {
|
||||
ASSERT_EQ(ErrorCode::OK, GenerateKey(AuthorizationSetBuilder()
|
||||
.Authorization(TAG_NO_AUTH_REQUIRED)
|
||||
.RsaSigningKey(256, 3)
|
||||
.RsaSigningKey(1024, 3)
|
||||
.Digest(Digest::NONE)
|
||||
.Padding(PaddingMode::NONE)));
|
||||
for (size_t i = 0; i < key_blob_.size(); ++i) {
|
||||
|
|
Loading…
Reference in a new issue