AutoIt
AutoIt
Convert DSA PEM Private Key to DER
See more DSA Examples
Converts a DSA private key from PEM format to DER. The first part of the example will convert an unencrypted PEM to DER, then 2nd part will convert an encrypted PEM to unencrypted DER.Chilkat AutoIt Downloads
Local $bSuccess = False
; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oDsa = ObjCreate("Chilkat.Dsa")
; Load a PEM private key.
Local $sPemPrivateKey
$sPemPrivateKey = $oDsa.LoadText("dsa_priv.pem")
; Import the unencrypted PEM into the DSA object.
$bSuccess = $oDsa.FromPem($sPemPrivateKey)
If ($bSuccess <> True) Then
ConsoleWrite($oDsa.LastErrorText & @CRLF)
Exit
EndIf
; Write it out as a DER file:
$bSuccess = $oDsa.ToDerFile("dsa_priv.der")
If ($bSuccess <> True) Then
ConsoleWrite($oDsa.LastErrorText & @CRLF)
Exit
EndIf
; Load an encrypted PEM private key.
$sPemPrivateKey = $oDsa.LoadText("dsa_privEncrypted.pem")
; Import the encrypted PEM into the DSA object.
$bSuccess = $oDsa.FromEncryptedPem("myPassword",$sPemPrivateKey)
If ($bSuccess <> True) Then
ConsoleWrite($oDsa.LastErrorText & @CRLF)
Exit
EndIf
; Write it out as an unencrypted DER file:
$bSuccess = $oDsa.ToDerFile("dsa_priv2.der")
If ($bSuccess <> True) Then
ConsoleWrite($oDsa.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("Finished!" & @CRLF)