1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
|
/*****************************************************************
|
| AP4 - Common Encryption support
|
| Copyright 2002-2017 Axiomatic Systems, LLC
|
|
| This file is part of Bento4/AP4 (MP4 Atom Processing Library).
|
| Unless you have obtained Bento4 under a difference license,
| this version of Bento4 is Bento4|GPL.
| Bento4|GPL is free software; you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation; either version 2, or (at your option)
| any later version.
|
| Bento4|GPL is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
|
| You should have received a copy of the GNU General Public License
| along with Bento4|GPL; see the file COPYING. If not, write to the
| Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
| 02111-1307, USA.
|
****************************************************************/
#ifndef _AP4_COMMON_ENCRYPTION_H_
#define _AP4_COMMON_ENCRYPTION_H_
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include "Ap4Atom.h"
#include "Ap4ByteStream.h"
#include "Ap4Utils.h"
#include "Ap4Processor.h"
#include "Ap4Protection.h"
#include "Ap4PsshAtom.h"
/*----------------------------------------------------------------------
| class declarations
+---------------------------------------------------------------------*/
class AP4_StreamCipher;
class AP4_SaizAtom;
class AP4_SaioAtom;
class AP4_CencSampleInfoTable;
class AP4_AvcFrameParser;
class AP4_HevcFrameParser;
class AP4_CencSingleSampleDecrypter;
/*----------------------------------------------------------------------
| constants
+---------------------------------------------------------------------*/
const AP4_UI32 AP4_PROTECTION_SCHEME_TYPE_CENC = AP4_ATOM_TYPE('c','e','n','c');
const AP4_UI32 AP4_PROTECTION_SCHEME_TYPE_CENS = AP4_ATOM_TYPE('c','e','n','s');
const AP4_UI32 AP4_PROTECTION_SCHEME_TYPE_CBC1 = AP4_ATOM_TYPE('c','b','c','1');
const AP4_UI32 AP4_PROTECTION_SCHEME_TYPE_CBCS = AP4_ATOM_TYPE('c','b','c','s');
const AP4_UI32 AP4_PROTECTION_SCHEME_VERSION_CENC_10 = 0x00010000;
const AP4_UI32 AP4_CENC_CIPHER_NONE = 0;
const AP4_UI32 AP4_CENC_CIPHER_AES_128_CTR = 1;
const AP4_UI32 AP4_CENC_CIPHER_AES_128_CBC = 2;
const AP4_UI32 AP4_CENC_SAMPLE_ENCRYPTION_FLAG_OVERRIDE_TRACK_ENCRYPTION_DEFAULTS = 1;
const AP4_UI32 AP4_CENC_SAMPLE_ENCRYPTION_FLAG_USE_SUB_SAMPLE_ENCRYPTION = 2;
typedef enum {
AP4_CENC_VARIANT_PIFF_CTR,
AP4_CENC_VARIANT_PIFF_CBC,
AP4_CENC_VARIANT_MPEG_CENC,
AP4_CENC_VARIANT_MPEG_CBC1,
AP4_CENC_VARIANT_MPEG_CENS,
AP4_CENC_VARIANT_MPEG_CBCS
} AP4_CencVariant;
/*----------------------------------------------------------------------
| AP4_CencTrackEncryption
+---------------------------------------------------------------------*/
class AP4_CencTrackEncryption {
public:
AP4_IMPLEMENT_DYNAMIC_CAST(AP4_CencTrackEncryption)
virtual ~AP4_CencTrackEncryption() {}
// methods
AP4_Result Parse(AP4_ByteStream& stream);
AP4_Result DoInspectFields(AP4_AtomInspector& inspector);
AP4_Result DoWriteFields(AP4_ByteStream& stream);
// accessors
AP4_UI32 GetDefaultIsProtected() { return m_DefaultIsProtected; }
AP4_UI08 GetDefaultPerSampleIvSize() { return m_DefaultPerSampleIvSize; }
AP4_UI08 GetDefaultConstantIvSize() { return m_DefaultConstantIvSize; }
const AP4_UI08* GetDefaultConstantIv() { return m_DefaultConstantIv; }
const AP4_UI08* GetDefaultKid() { return m_DefaultKid; }
AP4_UI08 GetDefaultCryptByteBlock() { return m_DefaultCryptByteBlock; }
AP4_UI08 GetDefaultSkipByteBlock() { return m_DefaultSkipByteBlock; }
protected:
// constructors
AP4_CencTrackEncryption(AP4_UI08 version);
AP4_CencTrackEncryption(AP4_UI08 version,
AP4_UI08 default_is_protected,
AP4_UI08 default_per_sample_iv_size,
const AP4_UI08* default_kid,
AP4_UI08 default_constant_iv_size = 0,
const AP4_UI08* default_constant_iv = NULL,
AP4_UI08 default_crypt_byte_block = 0,
AP4_UI08 default_skip_byte_block = 0);
private:
// members
AP4_UI08 m_Version_; // cannot be called m_Version because it would conflict with AP4_Atom::m_Version
AP4_UI08 m_DefaultIsProtected;
AP4_UI08 m_DefaultPerSampleIvSize;
AP4_UI08 m_DefaultConstantIvSize;
AP4_UI08 m_DefaultConstantIv[16];
AP4_UI08 m_DefaultKid[16];
AP4_UI08 m_DefaultCryptByteBlock;
AP4_UI08 m_DefaultSkipByteBlock;
};
/*----------------------------------------------------------------------
| AP4_CencSampleEncryption
+---------------------------------------------------------------------*/
class AP4_CencSampleEncryption {
public:
AP4_IMPLEMENT_DYNAMIC_CAST(AP4_CencSampleEncryption)
virtual ~AP4_CencSampleEncryption() {}
// methods
AP4_Result DoInspectFields(AP4_AtomInspector& inspector);
AP4_Result DoWriteFields(AP4_ByteStream& stream);
// accessors
AP4_Atom& GetOuter() { return m_Outer; }
AP4_UI32 GetAlgorithmId() { return m_AlgorithmId; }
AP4_UI08 GetPerSampleIvSize() { return m_PerSampleIvSize; }
AP4_Result SetPerSampleIvSize(AP4_UI08 iv_size);
AP4_UI08 GetConstantIvSize() { return m_ConstantIvSize; }
AP4_Result SetConstantIvSize(AP4_UI08 iv_size);
AP4_UI08 GetCryptByteBlock() { return m_CryptByteBlock; }
AP4_UI08 GetSkipByteBlock() { return m_SkipByteBlock; }
const AP4_UI08* GetConstantIv() { return m_ConstantIv; }
const AP4_UI08* GetKid() { return m_Kid; }
AP4_Cardinal GetSampleInfoCount() { return m_SampleInfoCount; }
AP4_Result AddSampleInfo(const AP4_UI08* iv, AP4_DataBuffer& subsample_info);
AP4_Result SetSampleInfosSize(AP4_Size size);
AP4_Result CreateSampleInfoTable(AP4_UI08 flags,
AP4_UI08 default_crypt_byte_block,
AP4_UI08 default_skip_byte_block,
AP4_UI08 default_per_sample_iv_size,
AP4_UI08 default_constant_iv_size,
const AP4_UI08* default_constant_iv,
AP4_CencSampleInfoTable*& table);
protected:
// constructors
AP4_CencSampleEncryption(AP4_Atom& outer,
AP4_UI08 per_sample_iv_size,
AP4_UI08 constant_iv_size = 0,
const AP4_UI08* constant_iv = NULL,
AP4_UI08 crypt_byte_block = 0,
AP4_UI08 skip_byte_block = 0);
AP4_CencSampleEncryption(AP4_Atom& outer, AP4_Size size, AP4_ByteStream& stream);
AP4_CencSampleEncryption(AP4_Atom& outer,
AP4_UI32 algorithm_id,
AP4_UI08 per_sample_iv_size,
const AP4_UI08* kid);
protected:
// members
AP4_Atom& m_Outer;
AP4_UI32 m_AlgorithmId;
AP4_UI08 m_PerSampleIvSize;
AP4_UI08 m_ConstantIvSize;
AP4_UI08 m_ConstantIv[16];
AP4_UI08 m_CryptByteBlock;
AP4_UI08 m_SkipByteBlock;
AP4_UI08 m_Kid[16];
AP4_Cardinal m_SampleInfoCount;
AP4_DataBuffer m_SampleInfos;
unsigned int m_SampleInfoCursor;
};
/*----------------------------------------------------------------------
| AP4_CencSampleInfoTable
+---------------------------------------------------------------------*/
class AP4_CencSampleInfoTable {
public:
// class methods
static AP4_Result Create(AP4_ProtectedSampleDescription* sample_description,
AP4_ContainerAtom* traf,
AP4_UI32& cipher_type,
bool& reset_iv_at_each_subsample,
AP4_ByteStream& aux_info_data,
AP4_Position aux_info_data_offset,
AP4_CencSampleInfoTable*& sample_info_table);
static AP4_Result Create(AP4_ProtectedSampleDescription* sample_description,
AP4_ContainerAtom* traf,
AP4_SaioAtom*& saio,
AP4_SaizAtom*& saiz,
AP4_CencSampleEncryption*& sample_encryption_atom,
AP4_UI32& cipher_type,
bool& reset_iv_at_each_subsample,
AP4_ByteStream& aux_info_data,
AP4_Position aux_info_data_offset,
AP4_CencSampleInfoTable*& sample_info_table);
static AP4_Result Create(AP4_UI08 flags,
AP4_UI08 crypt_byte_block,
AP4_UI08 skip_byte_block,
AP4_UI08 per_sample_iv_size,
AP4_UI08 constant_iv_size,
const AP4_UI08* constant_iv,
AP4_ContainerAtom& traf,
AP4_SaioAtom& saio,
AP4_SaizAtom& saiz,
AP4_ByteStream& aux_info_data,
AP4_Position aux_info_data_offset,
AP4_CencSampleInfoTable*& sample_info_table);
// see note below regarding the serialization format
static AP4_Result Create(const AP4_UI08* serialized,
unsigned int serialized_size,
AP4_CencSampleInfoTable*& sample_info_table);
// constructor
AP4_CencSampleInfoTable(AP4_UI08 flags,
AP4_UI08 crypt_byte_block,
AP4_UI08 skip_byte_block,
AP4_UI32 sample_count,
AP4_UI08 iv_size);
// methods
AP4_UI08 GetFlags() { return m_Flags; }
AP4_UI08 GetCryptByteBlock() { return m_CryptByteBlock; }
AP4_UI08 GetSkipByteBlock() { return m_SkipByteBlock; }
AP4_UI32 GetSampleCount() { return m_SampleCount; }
AP4_UI08 GetIvSize() { return m_IvSize; }
AP4_Result SetIv(AP4_Ordinal sample_index, const AP4_UI08* iv);
const AP4_UI08* GetIv(AP4_Ordinal sample_index);
AP4_Result AddSubSampleData(AP4_Cardinal subsample_count,
const AP4_UI08* subsample_data);
bool HasSubSampleInfo() {
return m_SubSampleMapStarts.ItemCount() != 0;
}
unsigned int GetSubsampleCount(AP4_Cardinal sample_index) {
if (sample_index < m_SampleCount) {
return m_SubSampleMapLengths[sample_index];
} else {
return 0;
}
}
AP4_Result GetSampleInfo(AP4_Cardinal sample_index,
AP4_Cardinal& subsample_count,
const AP4_UI16*& bytes_of_cleartext_data,
const AP4_UI32*& bytes_of_encrypted_data);
AP4_Result GetSubsampleInfo(AP4_Cardinal sample_index,
AP4_Cardinal subsample_index,
AP4_UI16& bytes_of_cleartext_data,
AP4_UI32& bytes_of_encrypted_data);
// see note below regarding the serialization format
AP4_Result Serialize(AP4_DataBuffer& buffer);
private:
AP4_UI32 m_SampleCount; // If 0, all samples are fully encrypted, and there's a single constant IV in m_IvData
AP4_UI08 m_Flags;
AP4_UI08 m_CryptByteBlock;
AP4_UI08 m_SkipByteBlock;
AP4_UI08 m_IvSize;
AP4_DataBuffer m_IvData;
AP4_Array<AP4_UI16> m_BytesOfCleartextData;
AP4_Array<AP4_UI32> m_BytesOfEncryptedData;
AP4_Array<unsigned int> m_SubSampleMapStarts;
AP4_Array<unsigned int> m_SubSampleMapLengths;
};
/*----------------------------------------------------------------------
| AP4_CencSampleInfoTable serialization format
|
| (All integers are stored in big-endian byte order)
|
| +---------------+----------------+------------------------------------+
| | Size | Type | Description |
| +---------------+----------------+------------------------------------+
|
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit integer | sample_count |
| +---------------+----------------+------------------------------------+
| | 1 byte | 8-bit integer | flags |
| +---------------+----------------+------------------------------------+
| | 1 byte | 8-bit integer | crypt_byte_block |
| +---------------+----------------+------------------------------------+
| | 1 byte | 8-bit integer | skip_byte_block |
| +---------------+----------------+------------------------------------+
| | 1 byte | 8-bit integer | iv_size |
| +---------------+----------------+------------------------------------+
|
| repeat sample_count times, or once if sample_count is 0:
| +---------------+----------------+------------------------------------+
| | iv_size bytes | byte array | IV[i] |
| +---------------+----------------+------------------------------------+
|
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit integer | entry_count |
| +---------------+----------------+------------------------------------+
|
| repeat entry_count times:
| +---------------+----------------+------------------------------------+
| | 2 bytes | 16-bit integer | bytes_of_cleartext_data[i] |
| +---------------+----------------+------------------------------------+
|
| repeat entry_count times:
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit integer | bytes_of_encrypted_data[i] |
| +---------------+----------------+------------------------------------+
|
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit flags | 1 if subsamples are used, 0 if not |
| +---------------+----------------+------------------------------------+
|
| if subsamples are used, repeat sample_count times:
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit integer | subsample_map_start[i] |
| +---------------+----------------+------------------------------------+
|
| if subsamples are used, repeat sample_count times:
| +---------------+----------------+------------------------------------+
| | 4 bytes | 32-bit integer | subsample_map_length[i] |
| +---------------+----------------+------------------------------------+
|
| NOTES: subsample_map_start[i] ans subsample_map_length[i] are, respectively,
| the index and the length the i'th subsample map sequence in the
| bytes_of_cleartext_data anb bytes_of_encrypted_data arrays.
| For example, if we have:
| bytes_of_cleartext_data[] = { 10, 15, 13, 17, 12 }
| bytes_of_encrypted_data[] = { 100, 200, 50, 80, 32 }
| subsample_map_start = { 0, 3 }
| subsample_map_length = { 3, 2 }
| It means that the (bytes_of_cleartext_data, bytes_of_encrypted_data)
| sequences for the two subsamples are:
| subsample[0] --> [(10,100), (15, 200), (13, 50)]
| subsample[1] --> [(17, 80), (12, 32)]
|
+---------------------------------------------------------------------*/
/*----------------------------------------------------------------------
| AP4_CencSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencSampleEncrypter
{
public:
// constructor and destructor
AP4_CencSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv) :
m_Cipher(cipher),
m_ConstantIv(constant_iv) {
AP4_SetMemory(m_Iv, 0, 16);
};
virtual ~AP4_CencSampleEncrypter();
// methods
virtual AP4_Result EncryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
AP4_DataBuffer& sample_infos) = 0;
void SetIv(const AP4_UI08* iv) { AP4_CopyMemory(m_Iv, iv, 16); }
const AP4_UI08* GetIv() { return m_Iv; }
virtual bool UseSubSamples() { return false; }
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& /* sample_data */,
AP4_Array<AP4_UI16>& /* bytes_of_cleartext_data */,
AP4_Array<AP4_UI32>& /* bytes_of_encrypted_data */) {
return AP4_SUCCESS;
}
protected:
AP4_UI08 m_Iv[16];
AP4_StreamCipher* m_Cipher;
bool m_ConstantIv;
};
/*----------------------------------------------------------------------
| AP4_CencCtrSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencCtrSampleEncrypter : public AP4_CencSampleEncrypter
{
public:
// constructor and destructor
AP4_CencCtrSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv,
unsigned int iv_size) :
AP4_CencSampleEncrypter(cipher, constant_iv),
m_IvSize(iv_size) {}
// methods
virtual AP4_Result EncryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
AP4_DataBuffer& sample_infos);
protected:
unsigned int m_IvSize;
};
/*----------------------------------------------------------------------
| AP4_CencCbcSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencCbcSampleEncrypter : public AP4_CencSampleEncrypter
{
public:
// constructor and destructor
AP4_CencCbcSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv) :
AP4_CencSampleEncrypter(cipher, constant_iv) {}
// methods
virtual AP4_Result EncryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
AP4_DataBuffer& sample_infos);
};
/*----------------------------------------------------------------------
| AP4_CencSubSampleMapper
+---------------------------------------------------------------------*/
class AP4_CencSubSampleMapper
{
public:
// constructor and destructor
AP4_CencSubSampleMapper(AP4_Size nalu_length_size, AP4_UI32 format) :
m_NaluLengthSize(nalu_length_size),
m_Format(format) {}
virtual ~AP4_CencSubSampleMapper() {}
// methods
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& sample_data,
AP4_Array<AP4_UI16>& bytes_of_cleartext_data,
AP4_Array<AP4_UI32>& bytes_of_encrypted_data) = 0;
protected:
// members
AP4_Size m_NaluLengthSize;
AP4_UI32 m_Format;
};
/*----------------------------------------------------------------------
| AP4_CencBasicSubSampleMapper
+---------------------------------------------------------------------*/
class AP4_CencBasicSubSampleMapper : public AP4_CencSubSampleMapper
{
public:
// constructor and destructor
AP4_CencBasicSubSampleMapper(AP4_Size nalu_length_size, AP4_UI32 format) :
AP4_CencSubSampleMapper(nalu_length_size, format) {}
// methods
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& sample_data,
AP4_Array<AP4_UI16>& bytes_of_cleartext_data,
AP4_Array<AP4_UI32>& bytes_of_encrypted_data);
};
/*----------------------------------------------------------------------
| AP4_CencAdvancedSubSampleMapper
+---------------------------------------------------------------------*/
class AP4_CencAdvancedSubSampleMapper : public AP4_CencSubSampleMapper
{
public:
// constructor and destructor
AP4_CencAdvancedSubSampleMapper(AP4_Size nalu_length_size, AP4_UI32 format) :
AP4_CencSubSampleMapper(nalu_length_size, format) {}
// methods
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& sample_data,
AP4_Array<AP4_UI16>& bytes_of_cleartext_data,
AP4_Array<AP4_UI32>& bytes_of_encrypted_data);
};
/*----------------------------------------------------------------------
| AP4_CencCbcsSubSampleMapper
+---------------------------------------------------------------------*/
class AP4_CencCbcsSubSampleMapper : public AP4_CencSubSampleMapper
{
public:
// constructor and destructor
AP4_CencCbcsSubSampleMapper(AP4_Size nalu_length_size, AP4_UI32 format, AP4_TrakAtom* trak);
~AP4_CencCbcsSubSampleMapper();
// methods
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& sample_data,
AP4_Array<AP4_UI16>& bytes_of_cleartext_data,
AP4_Array<AP4_UI32>& bytes_of_encrypted_data);
private:
// members
AP4_AvcFrameParser* m_AvcParser;
AP4_HevcFrameParser* m_HevcParser;
// methods
AP4_Result ParseAvcData(const AP4_UI08* data, AP4_Size data_size);
AP4_Result ParseHevcData(const AP4_UI08* data, AP4_Size data_size);
};
/*----------------------------------------------------------------------
| AP4_CencSubSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencSubSampleEncrypter : public AP4_CencSampleEncrypter
{
public:
// constructor and destructor
AP4_CencSubSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv,
bool reset_iv_at_each_subsample,
AP4_CencSubSampleMapper* subsample_mapper) :
AP4_CencSampleEncrypter(cipher, constant_iv),
m_ResetIvForEachSubsample(reset_iv_at_each_subsample),
m_SubSampleMapper(subsample_mapper) {}
virtual ~AP4_CencSubSampleEncrypter() {
delete m_SubSampleMapper;
}
// methods
virtual bool UseSubSamples() { return true; }
virtual AP4_Result GetSubSampleMap(AP4_DataBuffer& sample_data,
AP4_Array<AP4_UI16>& bytes_of_cleartext_data,
AP4_Array<AP4_UI32>& bytes_of_encrypted_data) {
return m_SubSampleMapper->GetSubSampleMap(sample_data, bytes_of_cleartext_data, bytes_of_encrypted_data);
}
// members
bool m_ResetIvForEachSubsample;
AP4_CencSubSampleMapper* m_SubSampleMapper;
};
/*----------------------------------------------------------------------
| AP4_CencCtrSubSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencCtrSubSampleEncrypter : public AP4_CencSubSampleEncrypter
{
public:
// constructor and destructor
AP4_CencCtrSubSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv,
bool reset_iv_at_each_subsample,
unsigned int iv_size,
AP4_CencSubSampleMapper* subsample_mapper) :
AP4_CencSubSampleEncrypter(cipher,
constant_iv,
reset_iv_at_each_subsample,
subsample_mapper),
m_IvSize(iv_size) {}
// methods
virtual AP4_Result EncryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
AP4_DataBuffer& sample_infos);
protected:
unsigned int m_IvSize;
};
/*----------------------------------------------------------------------
| AP4_CencCbcSubSampleEncrypter
+---------------------------------------------------------------------*/
class AP4_CencCbcSubSampleEncrypter : public AP4_CencSubSampleEncrypter
{
public:
// constructor and destructor
AP4_CencCbcSubSampleEncrypter(AP4_StreamCipher* cipher,
bool constant_iv,
bool reset_iv_at_each_subsample,
AP4_CencSubSampleMapper* subsample_mapper) :
AP4_CencSubSampleEncrypter(cipher,
constant_iv,
reset_iv_at_each_subsample,
subsample_mapper) {}
// methods
virtual AP4_Result EncryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
AP4_DataBuffer& sample_infos);
};
/*----------------------------------------------------------------------
| AP4_CencEncryptingProcessor
+---------------------------------------------------------------------*/
class AP4_CencEncryptingProcessor : public AP4_Processor
{
public:
// class constants
static const AP4_UI32 OPTION_EME_PSSH = 0x01; ///< Include a 'standard EME' pssh atom in the output
static const AP4_UI32 OPTION_PIFF_COMPATIBILITY = 0x02; ///< Attempt to create an output that is compatible with the PIFF format
static const AP4_UI32 OPTION_PIFF_IV_SIZE_16 = 0x04; ///< With the PIFF-compatibiity option, use an IV of size 16 when possible (instead of 8)
static const AP4_UI32 OPTION_IV_SIZE_8 = 0x08; ///< Use an IV of size 8 when possible (instead of 16 by default).
static const AP4_UI32 OPTION_NO_SENC = 0x10; ///< Don't output an 'senc' atom
// types
struct Encrypter {
Encrypter(AP4_UI32 track_id, AP4_UI32 cleartext_fragments, AP4_CencSampleEncrypter* sample_encrypter) :
m_TrackId(track_id),
m_CurrentFragment(0),
m_CleartextFragments(cleartext_fragments),
m_SampleEncrypter(sample_encrypter) {}
~Encrypter() { delete m_SampleEncrypter; }
AP4_UI32 m_TrackId;
AP4_UI32 m_CurrentFragment;
AP4_UI32 m_CleartextFragments;
AP4_CencSampleEncrypter* m_SampleEncrypter;
};
// constructor
AP4_CencEncryptingProcessor(AP4_CencVariant variant,
AP4_UI32 options = 0,
AP4_BlockCipherFactory* block_cipher_factory = NULL);
~AP4_CencEncryptingProcessor();
// accessors
AP4_ProtectionKeyMap& GetKeyMap() { return m_KeyMap; }
AP4_TrackPropertyMap& GetPropertyMap() { return m_PropertyMap; }
AP4_Array<AP4_PsshAtom*>& GetPsshAtoms() { return m_PsshAtoms; }
// AP4_Processor methods
virtual AP4_Result Initialize(AP4_AtomParent& top_level,
AP4_ByteStream& stream,
AP4_Processor::ProgressListener* listener = NULL);
virtual AP4_Processor::TrackHandler* CreateTrackHandler(AP4_TrakAtom* trak);
virtual AP4_Processor::FragmentHandler* CreateFragmentHandler(AP4_TrakAtom* trak,
AP4_TrexAtom* trex,
AP4_ContainerAtom* traf,
AP4_ByteStream& moof_data,
AP4_Position moof_offset);
protected:
// members
AP4_CencVariant m_Variant;
AP4_UI32 m_Options;
AP4_BlockCipherFactory* m_BlockCipherFactory;
AP4_ProtectionKeyMap m_KeyMap;
AP4_TrackPropertyMap m_PropertyMap;
AP4_Array<AP4_PsshAtom*> m_PsshAtoms;
AP4_List<Encrypter> m_Encrypters;
};
/*----------------------------------------------------------------------
| AP4_CencDecryptingProcessor
+---------------------------------------------------------------------*/
class AP4_CencDecryptingProcessor : public AP4_Processor
{
public:
// constructor
AP4_CencDecryptingProcessor(const AP4_ProtectionKeyMap* key_map,
AP4_BlockCipherFactory* block_cipher_factory = NULL,
AP4_CencSingleSampleDecrypter* cenc_singlesample_decrypter = NULL);
// AP4_Processor methods
virtual AP4_Processor::TrackHandler* CreateTrackHandler(AP4_TrakAtom* trak);
virtual AP4_Processor::FragmentHandler* CreateFragmentHandler(AP4_TrakAtom* trak,
AP4_TrexAtom* trex,
AP4_ContainerAtom* traf,
AP4_ByteStream& moof_data,
AP4_Position moof_offset);
protected:
// methods
const AP4_DataBuffer* GetKeyForTrak(AP4_UI32 track_id, AP4_ProtectedSampleDescription* sample_description);
// members
AP4_BlockCipherFactory* m_BlockCipherFactory;
AP4_CencSingleSampleDecrypter* m_CencSingleSampleDecrypter;
const AP4_ProtectionKeyMap* m_KeyMap;
};
/*----------------------------------------------------------------------
| AP4_CencSingleSampleDecrypter
+---------------------------------------------------------------------*/
class AP4_CencSingleSampleDecrypter
{
public:
static AP4_Result Create(AP4_UI32 cipher_type,
const AP4_UI08* key,
AP4_Size key_size,
AP4_UI08 crypt_byte_block,
AP4_UI08 skip_byte_block,
AP4_BlockCipherFactory* block_cipher_factory,
bool reset_iv_at_each_subsample,
AP4_CencSingleSampleDecrypter*& decrypter);
// methods
AP4_CencSingleSampleDecrypter(AP4_StreamCipher* cipher) :
m_Cipher(cipher),
m_FullBlocksOnly(false),
m_ParentIsOwner(true) {}
virtual ~AP4_CencSingleSampleDecrypter();
virtual AP4_Result DecryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
// always 16 bytes
const AP4_UI08* iv,
// pass 0 for full decryption
unsigned int subsample_count,
// array of <subsample_count> integers. NULL if subsample_count is 0
const AP4_UI16* bytes_of_cleartext_data,
// array of <subsample_count> integers. NULL if subsample_count is 0
const AP4_UI32* bytes_of_encrypted_data);
bool GetParentIsOwner()const { return m_ParentIsOwner; };
void SetParentIsOwner(bool parent_is_owner) { m_ParentIsOwner = parent_is_owner; };
private:
// constructor
AP4_CencSingleSampleDecrypter(AP4_StreamCipher* cipher,
bool full_blocks_only,
bool reset_iv_at_each_subsample) :
m_Cipher(cipher),
m_FullBlocksOnly(full_blocks_only),
m_ResetIvAtEachSubsample(reset_iv_at_each_subsample),
m_ParentIsOwner(true) {}
// members
AP4_StreamCipher* m_Cipher;
bool m_FullBlocksOnly;
bool m_ResetIvAtEachSubsample;
bool m_ParentIsOwner;
};
/*----------------------------------------------------------------------
| AP4_CencSampleDecrypter
+---------------------------------------------------------------------*/
class AP4_CencSampleDecrypter : public AP4_SampleDecrypter
{
public:
static AP4_Result Create(AP4_ProtectedSampleDescription* sample_description,
AP4_ContainerAtom* traf,
AP4_ByteStream& moof_data,
AP4_Position moof_offset,
const AP4_UI08* key,
AP4_Size key_size,
AP4_BlockCipherFactory* block_cipher_factory,
AP4_SaioAtom*& saio_atom, // [out]
AP4_SaizAtom*& saiz_atom, // [out]
AP4_CencSampleEncryption*& sample_encryption_atom, // [out]
AP4_CencSingleSampleDecrypter* singlesample_decrypter,
AP4_CencSampleDecrypter*& decrypter);
static AP4_Result Create(AP4_ProtectedSampleDescription* sample_description,
AP4_ContainerAtom* traf,
AP4_ByteStream& moof_data,
AP4_Position moof_offset,
const AP4_UI08* key,
AP4_Size key_size,
AP4_BlockCipherFactory* block_cipher_factory,
AP4_CencSingleSampleDecrypter* singlesample_decrypter,
AP4_CencSampleDecrypter*& decrypter);
static AP4_Result Create(AP4_CencSampleInfoTable* sample_info_table,
AP4_UI32 cipher_type,
const AP4_UI08* key,
AP4_Size key_size,
AP4_BlockCipherFactory* block_cipher_factory,
bool reset_iv_at_each_subsample,
AP4_CencSingleSampleDecrypter* singlesample_decrypter,
AP4_CencSampleDecrypter*& decrypter);
// methods
AP4_CencSampleDecrypter(AP4_CencSingleSampleDecrypter* single_sample_decrypter,
AP4_CencSampleInfoTable* sample_info_table) :
m_SingleSampleDecrypter(single_sample_decrypter),
m_SampleInfoTable(sample_info_table),
m_SampleCursor(0) {}
virtual ~AP4_CencSampleDecrypter();
virtual AP4_Result SetSampleIndex(AP4_Ordinal sample_index);
virtual AP4_Result DecryptSampleData(AP4_DataBuffer& data_in,
AP4_DataBuffer& data_out,
const AP4_UI08* iv);
protected:
AP4_CencSingleSampleDecrypter* m_SingleSampleDecrypter;
AP4_CencSampleInfoTable* m_SampleInfoTable;
AP4_Ordinal m_SampleCursor;
};
/*----------------------------------------------------------------------
| AP4_CencSampleEncryptionInformationGroupEntry
+---------------------------------------------------------------------*/
class AP4_CencSampleEncryptionInformationGroupEntry {
public:
AP4_CencSampleEncryptionInformationGroupEntry(const AP4_UI08* data);
// accessors
bool IsEncrypted() const { return m_IsEncrypted; }
AP4_UI08 GetIvSize() const { return m_IvSize; }
const AP4_UI08* GetKid() const { return &m_KID[9]; }
private:
// members
bool m_IsEncrypted;
AP4_UI08 m_IvSize;
AP4_UI08 m_KID[16];
};
#endif // _AP4_COMMON_ENCRYPTION_H_
|