-
Notifications
You must be signed in to change notification settings - Fork 2
/
rotate_key.sh
executable file
·64 lines (47 loc) · 1.42 KB
/
rotate_key.sh
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
#!/bin/bash
#
# Rotate a key from a parent key and a randon nonce.
#
set -u # stop if any variable is undefined
set -e # stop if any command fails
nonce_in=0000000000000000000000000000000000000000
############################################
# Check parameters
############################################
if [ $# -ne 1 ]
then
echo "Rotate a key from a parent key and a randon nonce"
echo "Usage $0 KeyID"
echo "Ex.: $0 6"
echo ""
echo "Note that in case target key requires authorization, you need to run"
echo "authorize command first."
exit 1
fi
read -p "Input parent key (32 hex bytes): " parent
key=$1
############################################
# Get serial number
############################################
sn=`./serial`
sn01=${sn:0:4}
sn23=${sn:4:4}
sn47=${sn:8:8}
sn8=${sn:16:2}
############################################
# Get random nonce, data and device MAC
############################################
nonce_out=`./nonce_rand $nonce_in` # create nonce
echo "Nonce: $nonce_out"
############################################
# Calculate local MAC
############################################
opcode=1c
param1=00
param2=$(printf "%02x00" $key)
mac_msg=$parent$opcode$param1$param2$sn8$sn01
mac=$(echo $mac_msg | xxd -r -p | sha256sum | cut -d ' ' -f 1)
############################################
# Call Derive Key
############################################
./derivekey $key 0 $mac