summaryrefslogtreecommitdiff
path: root/scripts/keygeneration/accessory/create_new_ec_efs_key.sh
blob: 54725e208e473d515136bf8585f09b63f1e6d6d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Load common constants and functions.
. "$(dirname "$0")/common_leverage_hammer.sh"

main() {
  set -e

  leverage_hammer_to_create_key "ec_efs" "$@"
}

main "$@"