installing SSL sha256 in iis6.0 - rsa-sha256

i have to install ssl certificate with sha256 algorithm in IIS6.0.And I have my own private key generated this during the CSR request,but not able to see the private key after installing SSL in IIS 6. Could you please help

Hi This issue has been resovled ,I had my private key in the OPENSSL folder as .key file. I have converted this to .pfx file using openssl commands.then reimported the certificate and private key.
Now i have my certificate with the Privatekey in the windows server2003.

Related

How to decrypt a file using privateKey.pem created with openssl in iOS

I am trying to decrypt a file which was encrypted using the openssl smime command.
Here are the steps I am following to create the certificate and encrypt the file.
For encryption: openssl smime -encrypt -binary -aes-256-cbc -in testFile.zip -out testFile.zip.enc -outform DER testCert.pem
I have created a certificate using this command-
openssl req -x509 -newkey rsa:4096 -keyout myPrivateKey.pem -out testCert.pem -days 365
Now, this file has been encrypted and saved to a server. I am downloading this file in my iOS Application.
Once Downloaded, I need to decrypt the file. Now, I am unable to do the same using Swift.
Is there a library or sample code that could help me get started in decrypting the file ?
I am very new to iOS and Cryptography.
I did have a look at the CommonCrypto and CryptoSwift. But haven't really got the solution yet.
I expect to get the zip file decrypted and stored at Directory or Library folder inside the application.

How to use openssl in swift private pod?

I followed below link to use openssl to generate pkcs12 file in a ios swift project.
https://stackoverflow.com/a/41856095/5059959
Now I want to create a private pod which requires openssl. How to can I do that?
I don't know how to do steps specified at above link
Could someone help me?

AES Decryption in Swift

I'm encrypting a file "info.plist" using openssl in mac.
openssl enc -aes-256-cbc -salt -in info.plist -out info.data -pass pass:myPass
How can I decrypt this info.data file in my iOS app?
I tried to use CryptoSwift pod but I can't figure out to make it work.
See the first answer for this question:Issue using CCCrypt (CommonCrypt) in Swift
It has an example for AES256 Decryption

Trigger.io : Where do i find android apk file created by 'forge run' command?

Didn't found this in their documentation. Where does apk file generated by "forge run android" is stored?
I am using Mac osx lion, if it's dependent on this.
An APK is created during the forge run android command, but it's deleted immediately after installing on the device; if you need to create an APK for use elsewhere or uploading to Google Play, see forge package android.
http://docs.trigger.io/en/v1.3/releasing.html#android
You need to generate a keystore file, and run the Package command in forge:
Generate a keystore by running: keytool -genkey -keystore choose-a-name.keystore -alias alias-name -keyalg RSA -keysize 2048 -validity 10000. Fill out the information that is asked for. A keystore-file is created.
Run the forge package android file or run the package tool via a web browser. If run for the first time, it will prompt you to provide the keystore file created in the previous step as well as the password you chose.
The location of the apk-file is printed as output.
More information about signing an app can be found on: http://developer.android.com/tools/publishing/app-signing.html. Also, Trigger's documentation is useful: https://trigger.io/docs/current/recipes/release/release_mobile.html

Issues in signing the .COD file

I am facing issues in signing the .COD file for my Application.
Few days back, I installed the Signature key files on my machine which I received from the Blackberry support. Signature Key files were successfully installed on my machine.
Now, I want to sign my .COD file again as my .COD files have been updated. But, I am getting the following error, when I try to sign the .COD file.
The Private key could not be found.
This program requires a private key for signing all transaction between this server and the signing authority server.
The private key is contained in the sigtool.csk file which was not found.
Expected location : C:\Program Files\Research In Motion\BlackBerry JDE 5.0.0\bin\sigtool.csk
Would you like to create a new key pair file.
Well, I can not create a new key pair file as it is not allowed.
i think in your system more than one jde or jde plugin is installed.go to bin directory of jde or eclipse plugin check for sigtool.csk.if its present, right click on signaturetool.jar and select "java platform se binary", one window will appear here browse your application.cod file and request for signature.

Resources