OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NONCE
(Results
1 - 5
of
5
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java
50
private static String
NONCE
= ParameterNames.
NONCE
;
112
else if (nameValue.getName().compareToIgnoreCase(
NONCE
) == 0)
AuthenticationHeader.java
78
public static final String
NONCE
= ParameterNames.
NONCE
;
112
|| name.equalsIgnoreCase(ParameterNames.
NONCE
)
217
* Sets the
Nonce
of the WWWAuthenicateHeader to the <var>
nonce
</var>
220
* @param
nonce
-
221
* the new
nonce
String of this WWWAuthenicateHeader.
224
* while parsing the
nonce
value.
227
public void setNonce(String
nonce
) throws ParseException {
228
if (
nonce
== null
[
all
...]
ParameterNames.java
68
public static final String
NONCE
= "
nonce
";
AuthenticationInfo.java
110
/** Returns the
Nonce
Count value of this AuthenticationInfoHeader.
163
/** Sets the
Nonce
Count of the AuthenticationInfoHeader to the <var>nonceCount</var>
217
|| name.equalsIgnoreCase(ParameterNames.
NONCE
)
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
aead_test.c
34
*
NONCE
: 978105dfce667bf4
46
NONCE
, /* hex encoded
nonce
. */
56
"KEY", "
NONCE
", "IN", "AD", "CT", "TAG",
85
if (!EVP_AEAD_CTX_seal(&ctx, out, &ciphertext_len, sizeof(out), bufs[
NONCE
],
86
lengths[
NONCE
], bufs[IN], lengths[IN], bufs[AD],
117
if (!EVP_AEAD_CTX_open(&ctx, out2, &plaintext_len, lengths[IN], bufs[
NONCE
],
118
lengths[
NONCE
], out, ciphertext_len, bufs[AD],
140
if (EVP_AEAD_CTX_open(&ctx, out2, &plaintext_len, lengths[IN], bufs[
NONCE
],
141
lengths[
NONCE
], out, ciphertext_len, bufs[AD]
[
all
...]
Completed in 153 milliseconds