Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ENCODED_KEY_LEN
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/toolchain/websocket/
H
A
D
handshake_helper.h
34
static constexpr size_t
ENCODED_KEY_LEN
= GetBase64EncodingLength(SHA_DIGEST_LENGTH);
member in OHOS::ArkCompiler::Toolchain::WebSocketKeyEncoder
36
static bool EncodeKey(std::string_view key, unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1]);
37
static bool EncodeKey(const unsigned char(&key)[KEY_LENGTH + 1], unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1]);
41
unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1]);
73
index += WebSocketKeyEncoder::
ENCODED_KEY_LEN
;
in ProtocolUpgradeBuilder()
79
const unsigned char (&encodedKey)[WebSocketKeyEncoder::
ENCODED_KEY_LEN
+ 1])
in ProtocolUpgradeBuilder()
85
constexpr void SetKey(const unsigned char (&encodedKey)[WebSocketKeyEncoder::
ENCODED_KEY_LEN
+ 1])
in SetKey()
111
+ WebSocketKeyEncoder::
ENCODED_KEY_LEN
H
A
D
handshake_helper.cpp
21
bool WebSocketKeyEncoder::EncodeKey(std::string_view key, unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1])
in EncodeKey()
32
unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1])
in EncodeKey()
44
unsigned char (&destination)[
ENCODED_KEY_LEN
+ 1])
in EncodeKey()
52
if (encodedBytes !=
ENCODED_KEY_LEN
) {
in EncodeKey()
/arkcompiler/toolchain/websocket/client/
H
A
D
websocket_client.cpp
53
unsigned char expectedSecWebSocketAccept[WebSocketKeyEncoder::
ENCODED_KEY_LEN
+ 1];
in ValidateServerHandShake()
60
if (response.secWebSocketAccept.size() != WebSocketKeyEncoder::
ENCODED_KEY_LEN
||
in ValidateServerHandShake()
/arkcompiler/toolchain/websocket/server/
H
A
D
websocket_server.cpp
84
unsigned char encodedKey[WebSocketKeyEncoder::
ENCODED_KEY_LEN
+ 1];
in ProtocolUpgrade()
Completed in 3 milliseconds