-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
416 lines (320 loc) · 15.1 KB
/
Program.cs
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.WindowsAzure.MediaServices.Client;
using Microsoft.WindowsAzure.MediaServices.Client.ContentKeyAuthorization;
using Microsoft.WindowsAzure.MediaServices.Client.DynamicEncryption;
using Microsoft.WindowsAzure.MediaServices.Client.FairPlay;
using Newtonsoft.Json;
namespace CreateFairPlayProtectedAsset
{
class Program
{
private static readonly string pfxPath = @"<path to the .pfx certificate file>";
private static readonly string pfxPassword = "<password for the .pfx certificate file>";
private static readonly byte[] askBytes = HexToBytes("<ASk bytes in hex>");
private static readonly string derPath = @"<path to public certificate file>";
private static readonly Uri _wamsEndpoint = new Uri("https://<WAMS endpoint host>.cloudapp.net/");
private static readonly string _wamsAccount = "<your WAMS account name>";
private static readonly string _wamsAccountKey = "<your WAMS account key>";
private static readonly string _wamsAcsBaseAddress = "https://<WAMS ACS host>.accesscontrol.windows.net/";
private static readonly string _wamsAcsScope = "<WAMS ACS scope>";
private static readonly string _assetFolder = "<path to the folder with your asset files>";
private static CloudMediaContext _mediaContext;
private static readonly string _kidPrefix = "nb:kid:UUID:";
static void Main(string[] args)
{
VerifyCerts();
var credentials = new MediaServicesCredentials(_wamsAccount, _wamsAccountKey)
{
AcsBaseAddress = _wamsAcsBaseAddress,
Scope = _wamsAcsScope
};
_mediaContext = new CloudMediaContext(_wamsEndpoint, credentials);
IAsset asset = CreateAsset();
IContentKey key = CreateKeyWithPolicy(asset);
IAssetDeliveryPolicy assetDeliveryPolicy = CreateAssetDeliveryPolicy(asset, key);
asset.DeliveryPolicies.Add(assetDeliveryPolicy);
Console.WriteLine("Asset Delivery Policy Added");
ILocator streamingLocator = CreateLocator(asset);
IStreamingEndpoint origin = GetOrigin(recreate: false);
Uri uri = GetManifestUrl(origin, asset, streamingLocator);
string keyDeliveryUrl = key.GetKeyDeliveryUrl(ContentKeyDeliveryType.FairPlay).ToString();
Console.WriteLine("ism: {0}\nkey delivery: {1}", uri, keyDeliveryUrl);
Console.ReadKey();
}
private static void VerifyCerts()
{
var pfxCert = new X509Certificate2(pfxPath, pfxPassword);
var derCert = new X509Certificate2(derPath);
if(derCert.Thumbprint != pfxCert.Thumbprint)
{
throw new Exception("Certificates thumbprint mismatch");
}
var publicKey = derCert.PublicKey.Key;
var keyFormatter = new System.Security.Cryptography.RSAOAEPKeyExchangeFormatter(publicKey);
byte[] clear = Guid.NewGuid().ToByteArray();
var encrypted = keyFormatter.CreateKeyExchange(clear);
var serverRsaKey = (System.Security.Cryptography.RSACryptoServiceProvider)pfxCert.PrivateKey;
var keyDeformatter = new System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter(serverRsaKey);
byte[] decrypted = keyDeformatter.DecryptKeyExchange(encrypted);
bool ok = clear.SequenceEqual(decrypted);
if (!ok)
{
throw new Exception("Certificates mismatch");
}
}
private static Uri GetManifestUrl(IStreamingEndpoint origin, IAsset asset, ILocator streamingLocator)
{
string manifestFormat = "(format=m3u8-aapl)";
string url = string.Format("{0}{1}.ism/manifest{2}", streamingLocator.Path, asset.Name, manifestFormat);
Uri uri = new Uri(url);
var builder = new UriBuilder(uri);
builder.Scheme = "https";
builder.Host = origin.HostName;
builder.Port = -1;
uri = builder.Uri;
return uri;
}
private static ILocator CreateLocator(IAsset asset)
{
ILocator streamingLocator = _mediaContext
.Locators
.Where(l => l.AssetId == asset.Id)
.AsEnumerable()
.FirstOrDefault(l => l.Type == LocatorType.OnDemandOrigin);
if (streamingLocator != null && streamingLocator.ExpirationDateTime <= DateTime.UtcNow + TimeSpan.FromHours(1))
{
streamingLocator.Delete();
streamingLocator = null;
}
if (streamingLocator == null)
{
IAccessPolicy accessPolicy = _mediaContext.AccessPolicies.Create("readPolicy", TimeSpan.FromDays(7), AccessPermissions.Read);
streamingLocator = _mediaContext.Locators.CreateLocator(LocatorType.OnDemandOrigin, asset, accessPolicy);
}
streamingLocator.Update(DateTime.Now + TimeSpan.FromDays(7));
return streamingLocator;
}
private static IAssetDeliveryPolicy CreateAssetDeliveryPolicy(IAsset asset, IContentKey key)
{
var policy = asset.DeliveryPolicies
.Where(p => p.AssetDeliveryProtocol == AssetDeliveryProtocol.HLS)
.SingleOrDefault();
if (policy != null)
{
policy.Delete();
}
Uri keyUrl = key.GetKeyDeliveryUrl(ContentKeyDeliveryType.FairPlay);
var configuration = new Dictionary<AssetDeliveryPolicyConfigurationKey, string>();
AssetDeliveryPolicyType policyType;
var kdUrl = keyUrl.ToString().Replace("https://", "skd://");
configuration.Add(AssetDeliveryPolicyConfigurationKey.FairPlayLicenseAcquisitionUrl, kdUrl);
var kdPolicy = _mediaContext.ContentKeyAuthorizationPolicies.Where(p => p.Id == key.AuthorizationPolicyId).Single();
var kdOption = kdPolicy.Options.Single(o => o.KeyDeliveryType == ContentKeyDeliveryType.FairPlay);
FairPlayConfiguration configFP = JsonConvert.DeserializeObject<FairPlayConfiguration>(kdOption.KeyDeliveryConfiguration);
configuration.Add(AssetDeliveryPolicyConfigurationKey.CommonEncryptionIVForCbcs, configFP.ContentEncryptionIV);
policyType = AssetDeliveryPolicyType.DynamicCommonEncryptionCbcs;
policy = _mediaContext.AssetDeliveryPolicies.Create(
"FairPlayDeliveryPolicy",
policyType,
AssetDeliveryProtocol.HLS,
configuration);
return policy;
}
private static IContentKey CreateKeyWithPolicy(IAsset asset)
{
IContentKey key = asset.ContentKeys.Where(k => k.ContentKeyType == ContentKeyType.CommonEncryptionCbcs).SingleOrDefault();
if (key != null)
{
CleanupKey(key);
}
var keyId = Guid.NewGuid();
byte[] contentKey = Guid.NewGuid().ToByteArray();
ContentKeyType contentKeyType = ContentKeyType.CommonEncryptionCbcs;
IContentKeyAuthorizationPolicyOption policyOption;
var restrictions = new List<ContentKeyAuthorizationPolicyRestriction>
{
new ContentKeyAuthorizationPolicyRestriction
{
Name = "Open",
KeyRestrictionType = (int)ContentKeyRestrictionType.Open,
Requirements = null
}
};
byte[] iv = Guid.NewGuid().ToByteArray();
policyOption = CreateFairPlayPolicyOption(iv);
key = _mediaContext.ContentKeys.Create(keyId, contentKey, "TestFairPlayKey", contentKeyType);
var contentKeyAuthorizationPolicy = _mediaContext.ContentKeyAuthorizationPolicies.CreateAsync("test").Result;
contentKeyAuthorizationPolicy.Options.Add(policyOption);
key.AuthorizationPolicyId = contentKeyAuthorizationPolicy.Id;
key = key.UpdateAsync().Result;
asset.ContentKeys.Add(key);
return key;
}
private static IContentKeyAuthorizationPolicyOption CreateFairPlayPolicyOption(byte[] iv)
{
var appCert = new X509Certificate2(pfxPath, pfxPassword, X509KeyStorageFlags.Exportable);
var pfxPasswordId = Guid.NewGuid();
byte[] pfxPasswordBytes = System.Text.Encoding.UTF8.GetBytes(pfxPassword);
IContentKey pfxPasswordKey = _mediaContext.ContentKeys.Create(pfxPasswordId, pfxPasswordBytes, "pfxPasswordKey", ContentKeyType.FairPlayPfxPassword);
var askId = Guid.NewGuid();
IContentKey askKey = _mediaContext.ContentKeys.Create(askId, askBytes, "askKey", ContentKeyType.FairPlayASk);
var restriction = new ContentKeyAuthorizationPolicyRestriction
{
Name = "Open",
KeyRestrictionType = (int)ContentKeyRestrictionType.Open,
Requirements = null
};
var restrictions = new List<ContentKeyAuthorizationPolicyRestriction> { restriction };
string configuration = FairPlayConfiguration.CreateSerializedFairPlayOptionConfiguration(
appCert,
pfxPassword,
pfxPasswordId,
askId,
iv);
var policyOption = _mediaContext.ContentKeyAuthorizationPolicyOptions.Create(
"fairPlayTest",
ContentKeyDeliveryType.FairPlay,
restrictions,
configuration);
return policyOption;
}
private static IAsset CreateAsset()
{
var assetFiles = Directory.GetFiles(_assetFolder);
var ismFile = assetFiles.Where(file => file.EndsWith(".ism")).Single();
var assetName = Path.GetFileNameWithoutExtension(ismFile);
IAsset asset = _mediaContext.Assets.Where(a => a.Name == assetName).SingleOrDefault();
if (asset != null)
{
DeleteAsset(asset);
asset = null;
}
if (asset == null)
{
asset = CreateAsset(assetFiles, assetName);
}
return asset;
}
private static void DeleteAsset(IAsset asset)
{
foreach (var locator in asset.Locators.ToArray())
{
locator.Delete();
}
foreach (var policy in asset.DeliveryPolicies.ToArray())
{
asset.DeliveryPolicies.Remove(policy);
policy.Delete();
}
foreach (var key in asset.ContentKeys.ToArray())
{
CleanupKey(key);
asset.ContentKeys.Remove(key);
}
asset.Delete();
}
private static IAsset CreateAsset(string[] assetFiles, string assetName)
{
IAsset asset = _mediaContext.Assets.Create(assetName, AssetCreationOptions.None);
foreach (var assetFile in assetFiles)
{
var assetFileName = Path.GetFileName(assetFile);
var assetFileCreated = asset.AssetFiles.Create(assetFileName);
if (assetFileName.EndsWith(".ism"))
{
assetFileCreated.IsPrimary = true;
assetFileCreated.Update();
}
Console.WriteLine("Created assetFile:{0}, Path:{1}", assetFileCreated.Name, assetFile);
Console.WriteLine("Upload {0}...", assetFileCreated.Name);
assetFileCreated.Upload(assetFile);
}
return asset;
}
public static void CleanupKey(IContentKey key)
{
var policy = _mediaContext.ContentKeyAuthorizationPolicies
.Where(o => o.Id == key.AuthorizationPolicyId)
.SingleOrDefault();
if (policy != null)
{
if (key.ContentKeyType == ContentKeyType.CommonEncryptionCbcs)
{
string template = policy.Options.Single().KeyDeliveryConfiguration;
var config = JsonConvert.DeserializeObject<FairPlayConfiguration>(template);
IContentKey ask = _mediaContext
.ContentKeys
.Where(k => k.Id == _kidPrefix + config.ASkId.ToString())
.SingleOrDefault();
if (ask != null)
{
ask.Delete();
}
IContentKey pfxPassword = _mediaContext
.ContentKeys
.Where(k => k.Id == _kidPrefix + config.FairPlayPfxPasswordId.ToString())
.SingleOrDefault();
if (pfxPassword != null)
{
pfxPassword.Delete();
}
}
policy.Delete();
}
}
private static IStreamingEndpoint GetOrigin(bool recreate = true)
{
string originName = "testfp";
var origin = _mediaContext.StreamingEndpoints.AsEnumerable().SingleOrDefault(ep => ep.Name == originName);
if (origin != null && (recreate || origin.ScaleUnits < 1))
{
if (origin.State != StreamingEndpointState.Stopped)
{
origin.Stop();
}
origin.Delete();
origin = null;
}
if (origin == null)
{
Console.WriteLine("Creating endpoint...");
origin = _mediaContext.StreamingEndpoints.Create(originName, 1);
Console.WriteLine("Endpoint created...");
}
if (origin.State == StreamingEndpointState.Stopped)
{
Console.WriteLine("Starting Endpoint...");
origin.Start();
}
origin = WaitForStreamingEndpointStart(origin);
return origin;
}
private static IStreamingEndpoint WaitForStreamingEndpointStart(IStreamingEndpoint origin)
{
while (origin.State != StreamingEndpointState.Running)
{
Console.WriteLine("Waiting for Endpoint...");
Thread.Sleep(10000);
origin = _mediaContext.StreamingEndpoints.AsEnumerable().SingleOrDefault(ep => ep.Id == origin.Id);
}
Console.WriteLine("Endpoint started.");
return origin;
}
private static byte[] HexToBytes(string s)
{
byte[] result = Enumerable
.Range(0, s.Length)
.Where(x => x % 2 == 0)
.Select(x => Convert.ToByte(s.Substring(x, 2), 16))
.ToArray();
return result;
}
}
}