| 844 | } |
| 845 | |
| 846 | int main() |
| 847 | { |
| 848 | if (!chdir_to_bindir()) |
| 849 | printf("WARNING: Could not change working directory, AES-GCM test vectors will probably break.\n"); |
| 850 | |
| 851 | CCrypto::Init(); |
| 852 | |
| 853 | TestCryptoEncoding(); |
| 854 | TestSHA256(); |
| 855 | TestMD5(); |
| 856 | TestHMAC(); |
| 857 | TestSymmetricAuthCryptoVectors(); |
| 858 | TestEllipticCrypto(); |
| 859 | TestOpenSSHEd25519(); |
| 860 | TestEllipticPerf(); |
| 861 | TestSymmetricAuthCryptoPerf(); |
| 862 | |
| 863 | return g_failed ? 1 : 0; |
| 864 | } |
nothing calls this directly
no test coverage detected