MCPcopy Create free account
hub / github.com/anyRTC-UseCase/SipRtcProxy / getEncryptionString

Method getEncryptionString

include/IArRtcEngine.h:4763–4778  ·  view source on GitHub ↗

@cond

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected