Get string name for method. Return empty string for undefined Method
| 43 | |
| 44 | /// Get string name for method. Return empty string for undefined Method |
| 45 | String getMethodName(EncryptionMethod Method) |
| 46 | { |
| 47 | if (Method == AES_128_GCM_SIV) |
| 48 | return "AES_128_GCM_SIV"; |
| 49 | if (Method == AES_256_GCM_SIV) |
| 50 | return "AES_256_GCM_SIV"; |
| 51 | return ""; |
| 52 | } |
| 53 | |
| 54 | /// Get method code (used for codec, to understand which one we are using) |
| 55 | uint8_t getMethodCode(EncryptionMethod Method) |
no outgoing calls
no test coverage detected