Mp4Decrypt.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:5k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - MP4 Decrypter
  4. |
  5. |    Copyright 2005 Gilles Boccon-Gibod
  6. |
  7. |
  8. |    This file is part of Bento4/AP4 (MP4 Atom Processing Library).
  9. |
  10. |    Unless you have obtained Bento4 under a difference license,
  11. |    this version of Bento4 is Bento4|GPL.
  12. |    Bento4|GPL is free software; you can redistribute it and/or modify
  13. |    it under the terms of the GNU General Public License as published by
  14. |    the Free Software Foundation; either version 2, or (at your option)
  15. |    any later version.
  16. |
  17. |    Bento4|GPL is distributed in the hope that it will be useful,
  18. |    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. |    GNU General Public License for more details.
  21. |
  22. |    You should have received a copy of the GNU General Public License
  23. |    along with Bento4|GPL; see the file COPYING.  If not, write to the
  24. |    Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  25. |    02111-1307, USA.
  26. |
  27.  ****************************************************************/
  28. /*----------------------------------------------------------------------
  29. |       includes
  30. +---------------------------------------------------------------------*/
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include "Ap4.h"
  34. #include "Ap4FileByteStream.h"
  35. #include "Ap4Atom.h"
  36. #include "Ap4File.h"
  37. #include "Ap4Sample.h"
  38. #include "Ap4SampleDescription.h"
  39. #include "Ap4IsmaCryp.h"
  40. #include "Ap4Utils.h"
  41. /*----------------------------------------------------------------------
  42. |       constants
  43. +---------------------------------------------------------------------*/
  44. #define BANNER "MP4 Decrypter - Version 0.1an"
  45.                "(c) 2002-2005 Gilles Boccon-Gibod & Julien Boeuf"
  46.  
  47. /*----------------------------------------------------------------------
  48. |       PrintUsageAndExit
  49. +---------------------------------------------------------------------*/
  50. static void
  51. PrintUsageAndExit()
  52. {
  53.     fprintf(stderr, 
  54.             BANNER 
  55.             "nn"
  56.             "usage: mp4decrypt [--key <n>:<k>:<salt>] <input> <output>n"
  57.             "    where <n> is a track index, <k> a 128-bit key in hexn"
  58.             "    and <salt> a 128-bit salting keyn"
  59.             "    (several --key options can be used, one for each track)n");
  60.     exit(1);
  61. }
  62. /*----------------------------------------------------------------------
  63. |       main
  64. +---------------------------------------------------------------------*/
  65. int
  66. main(int argc, char** argv)
  67. {
  68.     if (argc < 3) {
  69.         PrintUsageAndExit();
  70.     }
  71.     // create a decrypting processor
  72.     AP4_IsmaDecryptingProcessor processor;
  73.     // parse options
  74.     const char* input_filename = NULL;
  75.     const char* output_filename = NULL;
  76.     char* arg;
  77.     while ((arg = *++argv)) {
  78.         if (!strcmp(arg, "--key")) {
  79.             arg = *++argv;
  80.             if (arg == NULL) {
  81.                 fprintf(stderr, "ERROR: missing argument after --key optionn");
  82.                 return 1;
  83.             }
  84.             char* track_ascii = NULL;
  85.             char* key_ascii = NULL;
  86.             char* salt_ascii = NULL;
  87.             if (AP4_SplitArgs(arg, track_ascii, key_ascii, salt_ascii)) {
  88.                 fprintf(stderr, "ERROR: invalid argument for --key optionn");
  89.                 return 1;
  90.             }
  91.             unsigned char key[16];
  92.             unsigned char salt[16];
  93.             unsigned int track = strtoul(track_ascii, NULL, 10);
  94.             if (AP4_ParseHex(key_ascii, key, 16)) {
  95.                 fprintf(stderr, "ERROR: invalid hex format for keyn");
  96.             }
  97.             if (AP4_ParseHex(salt_ascii, salt, 8)) {
  98.                 fprintf(stderr, "ERROR: invalid hex format for saltn");
  99.             }
  100.             // set the key in the map
  101.             processor.GetKeyMap().SetKey(track, key, salt);
  102.         } else if (input_filename == NULL) {
  103.             input_filename = arg;
  104.         } else if (output_filename == NULL) {
  105.             output_filename = arg;
  106.         } else {
  107.             fprintf(stderr, "ERROR: unexpected argument (%s)n", arg);
  108.             return 1;
  109.         }
  110.     }
  111.     // check the arguments
  112.     if (input_filename == NULL) {
  113.         fprintf(stderr, "ERROR: missing input filenamen");
  114.         return 1;
  115.     }
  116.     if (output_filename == NULL) {
  117.         fprintf(stderr, "ERROR: missing output filenamen");
  118.         return 1;
  119.     }
  120.     // create the input stream
  121.     AP4_ByteStream* input;
  122.     try{
  123.         input = new AP4_FileByteStream(input_filename,
  124.             AP4_FileByteStream::STREAM_MODE_READ);
  125.     } catch (AP4_Exception) {
  126.         fprintf(stderr, "ERROR: cannot open input file (%s)n", input_filename);
  127.         return 1;
  128.     }
  129.     // create the output stream
  130.     AP4_ByteStream* output;
  131.     try {
  132.         output = new AP4_FileByteStream(output_filename,
  133.             AP4_FileByteStream::STREAM_MODE_WRITE);
  134.     } catch (AP4_Exception) {
  135.         fprintf(stderr, "ERROR: cannot open output file (%s)n", output_filename);
  136.         return 1;
  137.     }
  138.     // process/decrypt the file
  139.     processor.Process(*input, *output);
  140.     // cleanup
  141.     input->Release();
  142.     output->Release();
  143.     return 0;
  144. }