Searched refs:encodedKey (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/drm/mediadrm/plugins/clearkey/default/
H A DJsonWebKey.cpp68 String8 encodedKey, encodedKeyId; local
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);
132 findKey(const String8& jsonObject, String8* keyId, String8* encodedKey) argument
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
H A DJsonWebKey.cpp69 std::string encodedKey, encodedKeyId; local
75 encodedKey.clear();
80 if (findKey(mJsonObjects[i], &encodedKeyId, &encodedKey)) {
81 if (encodedKeyId.empty() || encodedKey.empty()) {
91 if (!decodeBase64String(encodedKey, &decodedKey)) {
92 ALOGE("Failed to decode key(%s)", encodedKey.c_str());
134 std::string* encodedKey) {
150 findValue(kKeyTag, encodedKey);
133 findKey(const std::string& jsonObject, std::string* keyId, std::string* encodedKey) argument
/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/
H A DJsonWebKey.h51 String8* encodedKey);
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
H A DJsonWebKey.h45 std::string* encodedKey);
/frameworks/base/core/java/android/net/
H A DUri.java1641 String encodedKey;
1643 encodedKey = URLEncoder.encode(key, DEFAULT_ENCODING);
1660 if (separator - start == encodedKey.length()
1661 && query.regionMatches(start, encodedKey, 0, encodedKey.length())) {
1705 final String encodedKey = encode(key, null);
1717 if (separator - start == encodedKey.length()
1718 && query.regionMatches(start, encodedKey, 0, encodedKey.length())) {
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
H A DSecureBoxTest.java349 byte[] encodedKey = SecureBox.encodePublicKey(originalKey);
350 PublicKey decodedKey = SecureBox.decodePublicKey(encodedKey);
/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetManagerService.java695 String encodedKey = encodePublicKey(pkh.getKey());
698 serializer.attribute(null, "value", encodedKey);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java2973 final String encodedKey = sa.getNonResourceString(
2975 if (encodedKey == null && publicKeys.get(publicKeyName) == null) {
2981 } else if (encodedKey != null) {
2982 PublicKey currentKey = parsePublicKey(encodedKey);

Completed in 172 milliseconds