(algorithm)
| 731 | } |
| 732 | |
| 733 | function toDisplayAlgorithm (algorithm) { |
| 734 | switch (algorithm) { |
| 735 | case 'md5': return 'MD5'; |
| 736 | case 'sha1': return 'SHA-1'; |
| 737 | case 'sha256': return 'SHA-256'; |
| 738 | default: return algorithm; |
| 739 | } |
| 740 | } |
| 741 | |
| 742 | function getDisplayVariant (variant) { |
| 743 | switch (variant) { |
no outgoing calls
no test coverage detected