summaryrefslogtreecommitdiffstats
path: root/remoting/tools/keygen.py
blob: deaeae1ea38f4541301eaf4b483d52a8b188dfa6 (plain)
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
# Copyright (c) 2011 The Chromium 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 os
import sys

SCRIPT_PATH = os.path.dirname(sys.argv[0])
if SCRIPT_PATH == "":
  SCRIPT_PATH = os.getcwd()

PATHS_TO_TRY = [
  '\\..\\..\\build\\Debug\\remoting_host_keygen.exe',
  '\\..\\..\\build\\Release\\remoting_host_keygen.exe',
  '\\..\\Debug\\remoting_host_keygen.exe',
  '\\..\\Release\\remoting_host_keygen.exe',
  '/../../xcodebuild/Debug/remoting_host_keygen',
  '/../../xcodebuild/Release/remoting_host_keygen',
  '/../../out/Debug/remoting_host_keygen',
  '/../../out/Release/remoting_host_keygen']

KEYGEN_PATH = None
for path in PATHS_TO_TRY:
  if os.path.exists(SCRIPT_PATH + path):
    KEYGEN_PATH = SCRIPT_PATH + path
    break

if not KEYGEN_PATH:
  raise Exception("Unable to find remoting_host_keygen. Please build it " +
                  "and try again")

def generateRSAKeyPair():
  """Returns (priv, pub) keypair where priv is a new private key and
  pub is the corresponding public key.  Both keys are BASE64 encoded."""
  pipe = os.popen(KEYGEN_PATH)
  out = pipe.readlines()
  if len(out) != 2:
    raise Exception("remoting_host_keygen failed.")
  return (out[0].strip(), out[1].strip())