HomeSort by relevance Sort by last modified time
    Searched defs:encodedKey (Results 1 - 5 of 5) sorted by null

  /frameworks/av/drm/mediadrm/plugins/clearkey/default/
JsonWebKey.cpp 68 String8 encodedKey, encodedKeyId;
74 encodedKey.clear();
79 if (findKey(mJsonObjects[i], &encodedKeyId, &encodedKey)) {
80 if (encodedKeyId.isEmpty() || encodedKey.isEmpty()) {
90 if (!decodeBase64String(encodedKey, &decodedKey)) {
91 ALOGE("Failed to decode key(%s)", encodedKey.string());
133 String8* encodedKey) {
149 findValue(kKeyTag, encodedKey);
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
JsonWebKey.cpp 72 std::string encodedKey, encodedKeyId;
78 encodedKey.clear();
83 if (findKey(mJsonObjects[i], &encodedKeyId, &encodedKey)) {
84 if (encodedKeyId.empty() || encodedKey.empty()) {
94 if (!decodeBase64String(encodedKey, &decodedKey)) {
95 ALOGE("Failed to decode key(%s)", encodedKey.c_str());
137 std::string* encodedKey) {
153 findValue(kKeyTag, encodedKey);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipher.java 98 byte[] encodedKey;
127 * initialized for encryption or decryption. The {@code encodedKey} will be
130 abstract void engineInitInternal(byte[] encodedKey, AlgorithmParameterSpec params,
285 engineInitInternal(this.encodedKey, null, random);
296 engineInitInternal(this.encodedKey, params, random);
442 byte[] encodedKey = key.getEncoded();
443 if (encodedKey == null) {
446 checkSupportedKeySize(encodedKey.length);
448 return encodedKey.length * 8;
464 final byte[] encodedKey = key.getEncoded()
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLCipher.java 101 byte[] encodedKey;
130 * initialized for encryption or decryption. The {@code encodedKey} will be
133 abstract void engineInitInternal(byte[] encodedKey, AlgorithmParameterSpec params,
288 engineInitInternal(this.encodedKey, null, random);
299 engineInitInternal(this.encodedKey, params, random);
445 byte[] encodedKey = key.getEncoded();
446 if (encodedKey == null) {
449 checkSupportedKeySize(encodedKey.length);
451 return encodedKey.length * 8;
467 final byte[] encodedKey = key.getEncoded()
    [all...]
  /external/grpc-grpc-java/netty/shaded/
grpc-netty-shaded-1.14.0.jar 

Completed in 950 milliseconds