| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | #include "crypto_api.h" | - |
| 10 | | - |
| 11 | #include <stdarg.h> | - |
| 12 | | - |
| 13 | #include "digest.h" | - |
| 14 | #include "log.h" | - |
| 15 | #include "ssherr.h" | - |
| 16 | | - |
| 17 | int | - |
| 18 | crypto_hash_sha512(unsigned char *out, const unsigned char *in, | - |
| 19 | unsigned long long inlen) | - |
| 20 | { | - |
| 21 | int r; | - |
| 22 | | - |
| 23 | if ((r = ssh_digest_memory(SSH_DIGEST_SHA512, in, inlen, out,| TRUE | never evaluated | | FALSE | evaluated 14262 times by 3 testsEvaluated by:- ssh-keygen
- test_kex
- test_sshkey
|
| 0-14262 |
| 24 | crypto_hash_sha512_BYTES)) != 0)| TRUE | never evaluated | | FALSE | evaluated 14262 times by 3 testsEvaluated by:- ssh-keygen
- test_kex
- test_sshkey
|
| 0-14262 |
| 25 | fatal("%s: %s", __func__, ssh_err(r)); never executed: fatal("%s: %s", __func__, ssh_err(r)); | 0 |
| 26 | return 0;executed 14262 times by 3 tests: return 0;Executed by:- ssh-keygen
- test_kex
- test_sshkey
| 14262 |
| 27 | } | - |
| | |