@cond
| 4761 | |
| 4762 | /// @cond |
| 4763 | const char* getEncryptionString() const { |
| 4764 | switch(encryptionMode) |
| 4765 | { |
| 4766 | case AES_128_XTS: |
| 4767 | return "aes-128-xts"; |
| 4768 | case AES_128_ECB: |
| 4769 | return "aes-128-ecb"; |
| 4770 | case AES_256_XTS: |
| 4771 | return "aes-256-xts"; |
| 4772 | case SM4_128_ECB: |
| 4773 | return "sm4-128-ecb"; |
| 4774 | default: |
| 4775 | return "aes-128-xts"; |
| 4776 | } |
| 4777 | return "aes-128-xts"; |
| 4778 | } |
| 4779 | /// @endcond |
| 4780 | }; |
| 4781 |
nothing calls this directly
no outgoing calls
no test coverage detected