/** * Copyright Notice: * Copyright 2021-2022 DMTF. All rights reserved. * License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md **/ #include "test_crypt.h" /* Max digest size is SHA-512 output. */ #define LIBSPDM_MAX_DIGEST_SIZE (LIBSPDM_SHA512_DIGEST_SIZE) /* Message string for digest validation. */ const char *m_libspdm_hash_data = "abc"; /* Result for SHA-256("abc"). (From "B.1 SHA-256 Example" of NIST FIPS 180-2) */ uint8_t m_libspdm_sha256_digest[LIBSPDM_SHA256_DIGEST_SIZE] = { 0xba, 0x78, 0x16, 0xbf, 0x8f, 0x01, 0xcf, 0xea, 0x41, 0x41, 0x40, 0xde, 0x5d, 0xae, 0x22, 0x23, 0xb0, 0x03, 0x61, 0xa3, 0x96, 0x17, 0x7a, 0x9c, 0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad }; /* Result for SHA-384("abc"). (from "D.1 SHA-384 Example" of NIST FIPS 180-2) */ uint8_t m_libspdm_sha384_digest[LIBSPDM_SHA384_DIGEST_SIZE] = { 0xcb, 0x00, 0x75, 0x3f, 0x45, 0xa3, 0x5e, 0x8b, 0xb5, 0xa0, 0x3d, 0x69, 0x9a, 0xc6, 0x50, 0x07, 0x27, 0x2c, 0x32, 0xab, 0x0e, 0xde, 0xd1, 0x63, 0x1a, 0x8b, 0x60, 0x5a, 0x43, 0xff, 0x5b, 0xed, 0x80, 0x86, 0x07, 0x2b, 0xa1, 0xe7, 0xcc, 0x23, 0x58, 0xba, 0xec, 0xa1, 0x34, 0xc8, 0x25, 0xa7 }; /* Result for SHA-512("abc"). (from "C.1 SHA-512 Example" of NIST FIPS 180-2) */ uint8_t m_libspdm_sha512_digest[LIBSPDM_SHA512_DIGEST_SIZE] = { 0xdd, 0xaf, 0x35, 0xa1, 0x93, 0x61, 0x7a, 0xba, 0xcc, 0x41, 0x73, 0x49, 0xae, 0x20, 0x41, 0x31, 0x12, 0xe6, 0xfa, 0x4e, 0x89, 0xa9, 0x7e, 0xa2, 0x0a, 0x9e, 0xee, 0xe6, 0x4b, 0x55, 0xd3, 0x9a, 0x21, 0x92, 0x99, 0x2a, 0x27, 0x4f, 0xc1, 0xa8, 0x36, 0xba, 0x3c, 0x23, 0xa3, 0xfe, 0xeb, 0xbd, 0x45, 0x4d, 0x44, 0x23, 0x64, 0x3c, 0xe8, 0x0e, 0x2a, 0x9a, 0xc9, 0x4f, 0xa5, 0x4c, 0xa4, 0x9f }; uint8_t m_libspdm_sha3_256_digest[LIBSPDM_SHA3_256_DIGEST_SIZE] = { 0x3a, 0x98, 0x5d, 0xa7, 0x4f, 0xe2, 0x25, 0xb2, 0x04, 0x5c, 0x17, 0x2d, 0x6b, 0xd3, 0x90, 0xbd, 0x85, 0x5f, 0x08, 0x6e, 0x3e, 0x9d, 0x52, 0x5b, 0x46, 0xbf, 0xe2, 0x45, 0x11, 0x43, 0x15, 0x32 }; uint8_t m_libspdm_sha3_384_digest[LIBSPDM_SHA3_384_DIGEST_SIZE] = { 0xec, 0x01, 0x49, 0x82, 0x88, 0x51, 0x6f, 0xc9, 0x26, 0x45, 0x9f, 0x58, 0xe2, 0xc6, 0xad, 0x8d, 0xf9, 0xb4, 0x73, 0xcb, 0x0f, 0xc0, 0x8c, 0x25, 0x96, 0xda, 0x7c, 0xf0, 0xe4, 0x9b, 0xe4, 0xb2, 0x98, 0xd8, 0x8c, 0xea, 0x92, 0x7a, 0xc7, 0xf5, 0x39, 0xf1, 0xed, 0xf2, 0x28, 0x37, 0x6d, 0x25 }; uint8_t m_libspdm_sha3_512_digest[LIBSPDM_SHA3_512_DIGEST_SIZE] = { 0xb7, 0x51, 0x85, 0x0b, 0x1a, 0x57, 0x16, 0x8a, 0x56, 0x93, 0xcd, 0x92, 0x4b, 0x6b, 0x09, 0x6e, 0x08, 0xf6, 0x21, 0x82, 0x74, 0x44, 0xf7, 0x0d, 0x88, 0x4f, 0x5d, 0x02, 0x40, 0xd2, 0x71, 0x2e, 0x10, 0xe1, 0x16, 0xe9, 0x19, 0x2a, 0xf3, 0xc9, 0x1a, 0x7e, 0xc5, 0x76, 0x47, 0xe3, 0x93, 0x40, 0x57, 0x34, 0x0b, 0x4c, 0xf4, 0x08, 0xd5, 0xa5, 0x65, 0x92, 0xf8, 0x27, 0x4e, 0xec, 0x53, 0xf0 }; uint8_t m_libspdm_sm3_256_digest[LIBSPDM_SM3_256_DIGEST_SIZE] = { 0x66, 0xc7, 0xf0, 0xf4, 0x62, 0xee, 0xed, 0xd9, 0xd1, 0xf2, 0xd4, 0x6b, 0xdc, 0x10, 0xe4, 0xe2, 0x41, 0x67, 0xc4, 0x87, 0x5c, 0xf2, 0xf7, 0xa2, 0x29, 0x7d, 0xa0, 0x2b, 0x8f, 0x4b, 0xa8, 0xe0 }; /** * Validate Crypto digest Interfaces. * * @retval true Validation succeeded. * @retval false Validation failed. * **/ bool libspdm_validate_crypt_digest(void) { #if (LIBSPDM_SHA256_SUPPORT) || (LIBSPDM_SHA384_SUPPORT) || \ (LIBSPDM_SHA512_SUPPORT) || (LIBSPDM_SHA3_256_SUPPORT)|| \ (LIBSPDM_SHA3_384_SUPPORT) || (LIBSPDM_SHA3_512_SUPPORT) || \ (LIBSPDM_SM3_256_SUPPORT) void *hash_ctx; size_t data_size; uint8_t digest[LIBSPDM_MAX_DIGEST_SIZE]; bool status; libspdm_my_print(" Crypt hash Engine Testing:\n"); data_size = libspdm_ascii_str_len(m_libspdm_hash_data); /* SHA-256 digest validation. */ #if LIBSPDM_SHA256_SUPPORT libspdm_my_print("- SHA-256: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha256_new(); if (hash_ctx == NULL) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("Init... "); status = libspdm_sha256_init(hash_ctx); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha256_free(hash_ctx); return false; } libspdm_my_print("Update... "); status = libspdm_sha256_update(hash_ctx, m_libspdm_hash_data, data_size); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha256_free(hash_ctx); return false; } libspdm_my_print("Finalize... "); status = libspdm_sha256_final(hash_ctx, digest); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha256_free(hash_ctx); return false; } libspdm_sha256_free(hash_ctx); libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha256_digest, LIBSPDM_SHA256_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA256_DIGEST_SIZE); status = libspdm_sha256_hash_all(m_libspdm_hash_data, data_size, digest); if (!status) { libspdm_my_print("[Fail]"); return false; } if (memcmp(digest, m_libspdm_sha256_digest, LIBSPDM_SHA256_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("[Pass]\n"); #endif /* LIBSPDM_SHA256_SUPPORT */ /* SHA-384 digest validation. */ #if LIBSPDM_SHA384_SUPPORT libspdm_my_print("- SHA-384: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha384_new(); if (hash_ctx == NULL) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("Init... "); status = libspdm_sha384_init(hash_ctx); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha384_free(hash_ctx); return false; } libspdm_my_print("Update... "); status = libspdm_sha384_update(hash_ctx, m_libspdm_hash_data, data_size); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha384_free(hash_ctx); return false; } libspdm_my_print("Finalize... "); status = libspdm_sha384_final(hash_ctx, digest); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha384_free(hash_ctx); return false; } libspdm_sha384_free(hash_ctx); libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha384_digest, LIBSPDM_SHA384_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA384_DIGEST_SIZE); status = libspdm_sha384_hash_all(m_libspdm_hash_data, data_size, digest); if (!status) { libspdm_my_print("[Fail]"); return false; } if (memcmp(digest, m_libspdm_sha384_digest, LIBSPDM_SHA384_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("[Pass]\n"); #endif /* LIBSPDM_SHA384_SUPPORT */ #if LIBSPDM_SHA512_SUPPORT /* SHA-512 digest validation. */ libspdm_my_print("- SHA-512: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha512_new(); if (hash_ctx == NULL) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("Init... "); status = libspdm_sha512_init(hash_ctx); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha512_free(hash_ctx); return false; } libspdm_my_print("Update... "); status = libspdm_sha512_update(hash_ctx, m_libspdm_hash_data, data_size); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha512_free(hash_ctx); return false; } libspdm_my_print("Finalize... "); status = libspdm_sha512_final(hash_ctx, digest); if (!status) { libspdm_my_print("[Fail]"); libspdm_sha512_free(hash_ctx); return false; } libspdm_sha512_free(hash_ctx); libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha512_digest, LIBSPDM_SHA512_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA512_DIGEST_SIZE); status = libspdm_sha512_hash_all(m_libspdm_hash_data, data_size, digest); if (!status) { libspdm_my_print("[Fail]"); return false; } if (memcmp(digest, m_libspdm_sha512_digest, LIBSPDM_SHA512_DIGEST_SIZE) != 0) { libspdm_my_print("[Fail]"); return false; } libspdm_my_print("[Pass]\n"); #endif #if LIBSPDM_SHA3_256_SUPPORT /* SHA3-256 digest validation. */ libspdm_my_print("- SHA3-256: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha3_256_new(); if (hash_ctx != NULL) { libspdm_my_print("Init... "); status = libspdm_sha3_256_init(hash_ctx); } if (status) { libspdm_my_print("Update... "); status = libspdm_sha3_256_update(hash_ctx, m_libspdm_hash_data, data_size); } if (status) { libspdm_my_print("Finalize... "); status = libspdm_sha3_256_final(hash_ctx, digest); } if (status) { libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha3_256_digest, LIBSPDM_SHA3_256_DIGEST_SIZE) == 0) { status = true; } else { status = false; } } if (hash_ctx != NULL) { libspdm_sha3_256_free(hash_ctx); } if (status) { libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA3_256_DIGEST_SIZE); status = libspdm_sha3_256_hash_all(m_libspdm_hash_data, data_size, digest); } if (status) { libspdm_my_print("[Pass]\n"); } else { libspdm_my_print("[Failed]\n"); return status; } #endif /* LIBSPDM_SHA3_256_SUPPORT */ #if LIBSPDM_SHA3_384_SUPPORT /* SHA3-384 digest validation. */ libspdm_my_print("- SHA3-384: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha3_384_new(); if (hash_ctx != NULL) { libspdm_my_print("Init... "); status = libspdm_sha3_384_init(hash_ctx); } if (status) { libspdm_my_print("Update... "); status = libspdm_sha3_384_update(hash_ctx, m_libspdm_hash_data, data_size); } if (status) { libspdm_my_print("Finalize... "); status = libspdm_sha3_384_final(hash_ctx, digest); } if (status) { libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha3_384_digest, LIBSPDM_SHA3_384_DIGEST_SIZE) == 0) { status = true; } else { status = false; } } if (hash_ctx != NULL) { libspdm_sha3_384_free(hash_ctx); } if (status) { libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA3_384_DIGEST_SIZE); status = libspdm_sha3_384_hash_all(m_libspdm_hash_data, data_size, digest); } if (status) { libspdm_my_print("[Pass]\n"); } else { libspdm_my_print("[Failed]\n"); return status; } #endif /* LIBSPDM_SHA3_384_SUPPORT */ #if LIBSPDM_SHA3_512_SUPPORT /* SHA3-512 digest validation. */ libspdm_my_print("- SHA3-512: "); libspdm_zero_mem(digest, LIBSPDM_MAX_DIGEST_SIZE); hash_ctx = libspdm_sha3_512_new(); if (hash_ctx != NULL) { libspdm_my_print("Init... "); status = libspdm_sha3_512_init(hash_ctx); } if (status) { libspdm_my_print("Update... "); status = libspdm_sha3_512_update(hash_ctx, m_libspdm_hash_data, data_size); } if (status) { libspdm_my_print("Finalize... "); status = libspdm_sha3_512_final(hash_ctx, digest); } if (status) { libspdm_my_print("Check value... "); if (memcmp(digest, m_libspdm_sha3_512_digest, LIBSPDM_SHA3_512_DIGEST_SIZE) == 0) { status = true; } else { status = false; } } if (hash_ctx != NULL) { libspdm_sha3_512_free(hash_ctx); } if (status) { libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SHA3_512_DIGEST_SIZE); status = libspdm_sha3_512_hash_all(m_libspdm_hash_data, data_size, digest); } if (status) { libspdm_my_print("[Pass]\n"); } else { libspdm_my_print("[Failed]\n"); return status; } #endif /* LIBSPDM_SHA3_512_SUPPORT */ #if LIBSPDM_SM3_256_SUPPORT /* SM3_256 digest validation. */ libspdm_my_print("- SM3_256: "); libspdm_my_print("HashAll... "); libspdm_zero_mem(digest, LIBSPDM_SM3_256_DIGEST_SIZE); status = libspdm_sm3_256_hash_all(m_libspdm_hash_data, data_size, digest); if (status) { if (memcmp(digest, m_libspdm_sm3_256_digest, LIBSPDM_SM3_256_DIGEST_SIZE) == 0) { status = true; } else { status = false; } } if (status) { libspdm_my_print("[Pass]\n"); } else { libspdm_my_print("[Failed]\n"); return status; } #endif /* LIBSPDM_SM3_256_SUPPORT */ #endif return true; }