2014-01-30 22:39:42 +01:00
|
|
|
HMAC_DRBG entropy usage SHA-1
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA1
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA1
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA-224
|
2024-05-23 14:43:22 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_224
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA224
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA-256
|
2024-05-23 17:01:07 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_256
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA256
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA-384
|
2024-05-23 15:33:41 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_384
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA384
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA-512
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA512
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA512
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-06-07 17:56:09 +01:00
|
|
|
HMAC_DRBG entropy usage SHA3-224
|
2024-05-31 11:34:52 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_224
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA3_224
|
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA3-256
|
2024-05-31 11:41:57 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_256
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA3_256
|
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA3-384
|
2024-05-31 11:46:32 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_384
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA3_384
|
|
|
|
|
|
|
|
HMAC_DRBG entropy usage SHA3-512
|
2024-05-31 11:50:55 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_512
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_entropy_usage:MBEDTLS_MD_SHA3_512
|
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-1 [#1]
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA1
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA1:"../../framework/data_files/hmac_drbg_seed":0
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-1 [#2]
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA1
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA1:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-224 [#1]
|
2024-05-23 14:43:22 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_224
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA224:"../../framework/data_files/hmac_drbg_seed":0
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-224 [#2]
|
2024-05-23 14:43:22 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_224
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA224:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-256 [#1]
|
2024-05-23 17:01:07 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_256
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA256:"../../framework/data_files/hmac_drbg_seed":0
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-256 [#2]
|
2024-05-23 17:01:07 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_256
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA256:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-384 [#1]
|
2024-05-23 15:33:41 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_384
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA384:"../../framework/data_files/hmac_drbg_seed":0
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-384 [#2]
|
2024-05-23 15:33:41 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_384
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA384:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-512 [#1]
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA512
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA512:"../../framework/data_files/hmac_drbg_seed":0
|
2014-01-30 21:11:16 +01:00
|
|
|
|
Uniquify test case descriptions
Make check-test-cases.py pass.
Prior to this commit, there were many repeated test descriptions, but
none with the same test data and dependencies and comments, as checked
with the following command:
for x in tests/suites/*.data; do perl -00 -ne 'warn "$ARGV: $. = $seen{$_}\n" if $seen{$_}; $seen{$_}=$.' $x; done
Wherever a test suite contains multiple test cases with the exact same
description, add " [#1]", " [#2]", etc. to make the descriptions
unique. We don't currently use this particular arrangement of
punctuation, so all occurrences of " [#" were added by this script.
I used the following ad hoc code:
import sys
def fix_test_suite(data_file_name):
in_paragraph = False
total = {}
index = {}
lines = None
with open(data_file_name) as data_file:
lines = list(data_file.readlines())
for line in lines:
if line == '\n':
in_paragraph = False
continue
if line.startswith('#'):
continue
if not in_paragraph:
# This is a test case description line.
total[line] = total.get(line, 0) + 1
index[line] = 0
in_paragraph = True
with open(data_file_name, 'w') as data_file:
for line in lines:
if line in total and total[line] > 1:
index[line] += 1
line = '%s [#%d]\n' % (line[:-1], index[line])
data_file.write(line)
for data_file_name in sys.argv[1:]:
fix_test_suite(data_file_name)
2019-09-19 21:20:26 +02:00
|
|
|
HMAC_DRBG write/update seed file SHA-512 [#2]
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA512
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA512:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
2014-01-30 21:11:16 +01:00
|
|
|
|
2023-06-07 17:56:09 +01:00
|
|
|
HMAC_DRBG write/update seed file SHA3-224 [#1]
|
2024-05-31 11:34:52 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_224
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_224:"../../framework/data_files/hmac_drbg_seed":0
|
2023-06-07 17:56:09 +01:00
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-224 [#2]
|
2024-05-31 11:34:52 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_224
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_224:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-256 [#1]
|
2024-05-31 11:41:57 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_256
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_256:"../../framework/data_files/hmac_drbg_seed":0
|
2023-06-07 17:56:09 +01:00
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-256 [#2]
|
2024-05-31 11:41:57 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_256
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_256:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-384 [#1]
|
2024-05-31 11:46:32 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_384
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_384:"../../framework/data_files/hmac_drbg_seed":0
|
2023-06-07 17:56:09 +01:00
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-384 [#2]
|
2024-05-31 11:46:32 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_384
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_384:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-512 [#1]
|
2024-05-31 11:50:55 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_512
|
2024-07-11 09:51:48 +02:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_512:"../../framework/data_files/hmac_drbg_seed":0
|
2023-06-07 17:56:09 +01:00
|
|
|
|
|
|
|
HMAC_DRBG write/update seed file SHA3-512 [#2]
|
2024-05-31 11:50:55 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_512
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_seed_file:MBEDTLS_MD_SHA3_512:"no_such_dir/file":MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
|
|
|
|
|
2014-01-30 22:39:42 +01:00
|
|
|
HMAC_DRBG from buffer SHA-1
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA1
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA1
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA-224
|
2024-05-23 14:43:22 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_224
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA224
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA-256
|
2024-05-23 17:01:07 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_256
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA256
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA-384
|
2024-05-23 15:33:41 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA_384
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA384
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA-512
|
2023-03-20 10:44:44 +01:00
|
|
|
depends_on:MBEDTLS_MD_CAN_SHA512
|
2015-04-08 12:49:31 +02:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA512
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-06-07 17:56:09 +01:00
|
|
|
HMAC_DRBG from buffer SHA3-224
|
2024-05-31 11:34:52 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_224
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA3_224
|
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA3-256
|
2024-05-31 11:41:57 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_256
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA3_256
|
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA3-384
|
2024-05-31 11:46:32 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_384
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA3_384
|
|
|
|
|
|
|
|
HMAC_DRBG from buffer SHA3-512
|
2024-05-31 11:50:55 +01:00
|
|
|
depends_on:PSA_WANT_ALG_SHA3_512
|
2023-06-07 17:56:09 +01:00
|
|
|
hmac_drbg_buf:MBEDTLS_MD_SHA3_512
|
|
|
|
|
2014-01-31 11:12:09 +01:00
|
|
|
HMAC_DRBG self test
|
|
|
|
hmac_drbg_selftest:
|