----------------------------------------------------------------------------- Purpose: Test AES-GCM crypto against known vectors -----------------------------------------------------------------------------
| 303 | // Purpose: Test AES-GCM crypto against known vectors |
| 304 | //----------------------------------------------------------------------------- |
| 305 | void TestSymmetricAuthCryptoVectors() |
| 306 | { |
| 307 | #ifndef TEST_VECTOR_DIR |
| 308 | #define TEST_VECTOR_DIR "aesgcmtestvectors/" |
| 309 | #endif |
| 310 | |
| 311 | // Check against known test vectors |
| 312 | TestSymmetricAuthCrypto_EncryptTestVectorFile( TEST_VECTOR_DIR "gcmEncryptExtIV256.rsp" ); |
| 313 | } |
| 314 | |
| 315 | //----------------------------------------------------------------------------- |
| 316 | // Purpose: Test elliptic-curve primitives (ed25519 signing, curve25519 key exchange) |
no test coverage detected