( args )
| 3 | import subprocess |
| 4 | |
| 5 | def run_cert_tool( args ): |
| 6 | args = [ "../../../bin/win64/steamnetworkingsockets_certtool.exe", "--output-json" ] + args |
| 7 | #print ' '.join( args ) |
| 8 | stdout = subprocess.check_output( args ) |
| 9 | return json.loads( stdout ) |
| 10 | |
| 11 | def create_keypair(): |
| 12 | return run_cert_tool( [ "gen_keypair" ] ) |
no outgoing calls
no test coverage detected