Home
last modified time | relevance | path

Searched refs:OpenSslCommand (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
DRsa2048Sha256GenerateKeys.py63 OpenSslCommand = 'openssl' variable
66 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand) variable
74 …Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subproc…
101 …Process = subprocess.Popen('%s genrsa -out %s 2048' % (OpenSslCommand, Item.name), stdout=subproce…
123 …Process = subprocess.Popen('%s rsa -in %s -modulus -noout' % (OpenSslCommand, Item), stdout=subpro…
135 …Process = subprocess.Popen('%s dgst -sha256 -binary' % (OpenSslCommand), stdin=subprocess.PIPE, st…
DRsa2048Sha256Sign.py84 OpenSslCommand = 'openssl' variable
87 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand) variable
95 …Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subproc…
151 …Process = subprocess.Popen('%s rsa -in "%s" -modulus -noout' % (OpenSslCommand, args.PrivateKeyFil…
177 …Process = subprocess.Popen('%s sha256 -sign "%s"' % (OpenSslCommand, args.PrivateKeyFileName), std…
226 …Process = subprocess.Popen('%s sha256 -prverify "%s" -signature %s' % (OpenSslCommand, args.Privat…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
DPkcs7Sign.py101 OpenSslCommand = 'openssl' variable
104 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand) variable
112 …Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subproc…
206 …sign -binary -signer "%s" -outform DER -md sha256 -certfile "%s"' % (OpenSslCommand, args.SignerPr…
275 …ocess.Popen('%s smime -verify -inform DER -content %s -CAfile %s' % (OpenSslCommand, args.OutputFi…
/device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
DVolInfo.c241 CHAR8 *OpenSslCommand; in main() local
329 OpenSslCommand = "openssl"; in main()
332 OpenSslPath = OpenSslCommand; in main()
334 OpenSslPath = malloc(strlen(OpenSslEnv)+strlen(OpenSslCommand)+1); in main()
339 CombinePath(OpenSslEnv, OpenSslCommand, OpenSslPath); in main()