Files
hdcp-genkey/generate_key.py
Rich Wareham fccbdf1e7c output hex strings in JSON rather than numbers
Apparently the precise precision JavaScript has for storing integers may not
quite be enough. We push this problem downstream by saving the hexadecimal
representation of the key rather than the number itself.
2010-09-17 12:41:26 +01:00

191 lines
6.1 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright (c) 2010, Rich Wareham <richwareham@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the <organization> nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import string, random, json
from optparse import OptionParser
MASTER_KEY_SRC = 'master-key.txt'
def main():
"""The main body of the program."""
parser = OptionParser()
parser.add_option('-m', '--master', dest='master_key_file',
help='load master key from FILE', metavar='FILE',
default='master-key.txt')
parser.add_option('-k', '--sink', action='store_true',
dest='gen_sink', default=False,
help='generate a sink key rather than a source key')
parser.add_option('', '--ksv', dest='ksv',
help='use a specific KSV expressed in hexadecimal',
metavar='KSV', default=None)
parser.add_option('-j', '--json', action='store_true',
dest='output_json', default=False,
help='output key and KSV as JSON')
(options, args) = parser.parse_args()
# read the master key file
key_matrix = read_key_file(open(options.master_key_file))
# generate a ksv if necessary
if options.ksv is not None:
ksv = int(options.ksv, 16)
else:
ksv = gen_ksv()
# generate a key
if options.gen_sink:
key = gen_sink_key(ksv, key_matrix)
else:
key = gen_source_key(ksv, key_matrix)
# output the key
if options.output_json:
output_json(ksv, key, options.gen_sink)
else:
output_human_readable(ksv, key, options.gen_sink)
def read_key_file(filelike):
"""Read a HDCP master key from a key file.
The key file is formatted into 40*40 56-bit hex values separated by
white space. The first 40 values correspond to row 1 of the matrix, the
next 40 row 2, etc. Lines beginning with a '#' are ignored. """
key_matrix = [ [] ]
for line in filelike:
if line[0] == '#':
# This is a comment... skip
continue
# split the line into words and parse the hex
for entry in map(lambda x: int(x, 16), string.split(line)):
# do we need to start a new row?
if len(key_matrix[-1]) >= 40:
key_matrix.append([])
# append this entry to the row
key_matrix[-1].append(entry)
# check we read the right number of entries in total
assert( len(key_matrix) == 40 )
assert( len(key_matrix[-1]) == 40 )
return key_matrix
def transpose(matrix):
"""Transpose a master key matrix.
This returns a copy of matrix which has been transposed."""
return zip(*matrix)
def gen_ksv():
"""Generate a KSV.
A KSV is a forty-bit number that (in binary) consists of twenty ones
and twenty zeroes"""
# generate KSV - 20 1s and 20 0s
ksv = (['1'] * 20) + (['0'] * 20)
# permute KSV
random.shuffle(ksv)
# convert the binary to int
return int(string.join(ksv, ''), 2)
def gen_source_key(ksv, key_matrix):
"""Generate a source key from the master key matrix passed.
To generate a source key, take a forty-bit number that (in binary)
consists of twenty ones and twenty zeroes; this is the source KSV. Add
together those twenty rows of the matrix that correspond to the ones in
the KSV (with the lowest bit in the KSV corresponding to the first
row), taking all elements modulo two to the power of fifty-six; this is
the source private key."""
# generate a list of bits for the KSV starting with the LSB
ksv_bits = map(lambda x: (ksv >> x) & 1, range(40))
# zip the master key matrix and the ksv s.t. the LSB of KSV is associated with
# the first row, etc. Then filter to only select those rows where the
# appropriate bit of the KSV is 1.
master_rows = map(lambda x: x[1], filter(lambda x: x[0] == 1, zip(ksv_bits, key_matrix)))
# now generate the key
key = [0] * 40
for row in master_rows:
# add row to key
key = map(lambda x: (x[0] + x[1]) & 0xffffffffffffff, zip(key, row))
return key
def gen_sink_key(ksv, key_matrix):
"""Generate a sink key from the master key matrix passed.
To generate a sink key, do the same as for a source key but the
transposed master matrix."""
return gen_source_key(ksv, transpose(key_matrix))
def output_human_readable(ksv, key, is_sink):
"""Print a human readable version of the KSV and key.
The KSV is a single integer. The key is a list of 40 integers."""
# output the ksv
print('KSV: %010x' % ksv)
# output the key
key_strs = map(lambda x: '%014x' % x, key)
print('\n%s Key:' % ('Sink' if is_sink else 'Source'))
print(string.join(map(lambda x: string.join(x, ' '), zip(*[key_strs]*5)), '\n'))
def output_json(ksv, key, is_sink):
"""Print a JSON version of the KSV and key.
The KSV is a single integer. The key is a list of 40 integers."""
print(json.dumps( {
'ksv': ('%010x' % ksv),
'key': map(lambda x: '%014x' % x, key),
'type': 'sink' if is_sink else 'source' },
sort_keys=True, indent=True))
# run the 'main' function if this file is being executed directly
if __name__ == '__main__':
main()