#!/bin/bash

NV_ENCRYPT_PATH="/usr/share/dgx/encrypt"

if [ "$EUID" -ne 0 ]; then
    echo "Must be run as root"
    exit 1
fi

python3 ${NV_ENCRYPT_PATH}/encrypt_main.py "$@"
exit $?