HomeSort by relevance Sort by last modified time
    Searched refs:OpenSslCommand (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256GenerateKeys.py 63 OpenSslCommand = 'openssl'
66 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand)
74 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
101 Process = subprocess.Popen('%s genrsa -out %s 2048' % (OpenSslCommand, Item.name), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
123 Process = subprocess.Popen('%s rsa -in %s -modulus -noout' % (OpenSslCommand, Item), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
135 Process = subprocess.Popen('%s dgst -sha256 -binary' % (OpenSslCommand), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Rsa2048Sha256Sign.py 84 OpenSslCommand = 'openssl'
87 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand)
95 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
151 Process = subprocess.Popen('%s rsa -in "%s" -modulus -noout' % (OpenSslCommand, args.PrivateKeyFileName), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
177 Process = subprocess.Popen('%s sha256 -sign "%s"' % (OpenSslCommand, args.PrivateKeyFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
226 Process = subprocess.Popen('%s sha256 -prverify "%s" -signature %s' % (OpenSslCommand, args.PrivateKeyFileName, args.OutputFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 101 OpenSslCommand = 'openssl'
104 OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand)
112 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
206 Process = subprocess.Popen('%s smime -sign -binary -signer "%s" -outform DER -md sha256 -certfile "%s"' % (OpenSslCommand, args.SignerPrivateCertFileName, args.OtherPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
275 Process = subprocess.Popen('%s smime -verify -inform DER -content %s -CAfile %s' % (OpenSslCommand, args.OutputFileName, args.TrustedPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
VolInfo.c 241 CHAR8 *OpenSslCommand;
329 OpenSslCommand = "openssl";
332 OpenSslPath = OpenSslCommand;
334 OpenSslPath = malloc(strlen(OpenSslEnv)+strlen(OpenSslCommand)+1);
339 CombinePath(OpenSslEnv, OpenSslCommand, OpenSslPath);
    [all...]

Completed in 309 milliseconds