blob: be39df43a68c80b898e064736df7117b4d1369b4 [file] [log] [blame]
#!/usr/bin/python
# Copyright (c) 2013 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.
import sys
import shill_proxy
def usage():
""" Print a usage message for this script. """
cmd = sys.argv[0]
common_args = ['<certificate>', '<public_key>', '<nonce>',
'<signed_data>', '<destination_udn>']
print cmd, 'encrypt', ' '.join(common_args)
print cmd, 'verify', ' '.join(common_args), '<data to encrypt>'
return False
def main(args):
""" Call methods related to destinations.
@param args arguments to the script, not including the script name.
"""
if len(args) < 1:
return usage()
command = args[0]
shill = shill_proxy.ShillProxy()
if command == 'verify':
if len(args) < 6:
return usage()
if shill.manager.VerifyDestination(*args[1:6]):
print 'Valid destination'
return True
if command == 'encrypt':
if len(args) < 7:
return usage()
print shill.manager.VerifyAndEncryptData(*args[1:7])
return True
return usage()
if __name__ == '__main__':
if not main(sys.argv[1:]):
sys.exit(1)