Home
last modified time | relevance | path

Searched refs:FILE_READ_KEY_LEN (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/src/
H A Dtls_key.cpp25 constexpr int FILE_READ_KEY_LEN = 4096; variable
182 char keyDer[FILE_READ_KEY_LEN] = {0}; in DecodeDer()
183 size_t keyLen = fread(keyDer, 1, FILE_READ_KEY_LEN, fp); in DecodeDer()
263 char privateKey[FILE_READ_KEY_LEN] = {0}; in DecodePem()
264 if (!fread(privateKey, 1, FILE_READ_KEY_LEN, fp)) { in DecodePem()
/ohos5.0/foundation/communication/netstack/test/unittest/tlssocket/client/
H A DTlsKeyTest.cpp29 constexpr int FILE_READ_KEY_LEN = 4096; variable
193 char privateKey[FILE_READ_KEY_LEN] = {0};