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:salt
(Results
1 - 5
of
5
) sorted by relevance
/foundation/distributedhardware/device_manager/test/unittest/
H
A
D
UTTest_dm_crypto.cpp
62
std::string
salt
= Crypto::GetSecSalt();
in HWTEST_F()
local
63
EXPECT_EQ(
salt
.length(), SALT_STRING_LENGTH);
in HWTEST_F()
64
EXPECT_NE(
salt
, SALT_DEFAULT);
in HWTEST_F()
66
std::cout << "Random Salt: " <<
salt
<< std::endl;
in HWTEST_F()
/foundation/distributedhardware/device_manager/utils/include/kvadapter/
H
A
D
dm_kv_info.h
27
const std::string SALT_KEY = "
salt
";
34
std::string
salt
;
member
36
explicit DmKVValue() : udidHash(""), appID(""), anoyDeviceId(""),
salt
(""), lastModifyTime(0) {}
in DmKVValue()
/foundation/distributedhardware/device_manager/utils/src/kvadapter/
H
A
D
dm_kv_info.cpp
29
jsonObj[SALT_KEY] = kvValue.
salt
;
in ConvertDmKVValueToJson()
53
kvValue.
salt
= resultJson[SALT_KEY].get<std::string>();
in ConvertJsonToDmKVValue()
/foundation/distributedhardware/device_manager/utils/src/crypto/
H
A
D
dm_crypto.cpp
207
std::string Crypto::GetHashWithSalt(const std::string &text, const std::string &
salt
)
in GetHashWithSalt()
argument
209
std::string rawText = text +
salt
;
in GetHashWithSalt()
268
std::string
salt
= GetSecSalt();
in ConvertUdidHashToAnoyGenerate()
local
269
std::string udidTemp = appId + DB_KEY_DELIMITER + udidHash + DB_KEY_DELIMITER +
salt
;
in ConvertUdidHashToAnoyGenerate()
278
kvValue.
salt
=
salt
;
in ConvertUdidHashToAnoyGenerate()
/foundation/distributedhardware/device_manager/utils/include/crypto/
H
A
D
dm_crypto.h
35
static std::string GetHashWithSalt(const std::string &text, const std::string &
salt
);
Completed in 2 milliseconds