Bug 1141386 - Don't always assume base64 encoded EME key/Ids have padding stripped. r=edwin

This commit is contained in:
Chris Pearce 2015-03-10 19:46:09 +13:00
Родитель b2538acd23
Коммит 2af0bf1fce
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -383,6 +383,7 @@ Decode6Bit(string& aStr)
} else {
// Truncate '=' padding at the end of the aString.
if (aStr[i] != '=') {
aStr.erase(i, string::npos);
return false;
}
aStr[i] = '\0';
@ -397,8 +398,8 @@ Decode6Bit(string& aStr)
static bool
DecodeBase64KeyOrId(string& aEncoded, vector<uint8_t>& aOutDecoded)
{
if (aEncoded.size() != 22 || // Can't decode to 16 byte CENC key or keyId.
!Decode6Bit(aEncoded)) {
if (!Decode6Bit(aEncoded) ||
aEncoded.size() != 22) { // Can't decode to 16 byte CENC key or keyId.
return false;
}