ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. certs
    Log in to post
    • All categories
    • WrCombs

      Grow with Google Certs?
      IT Discussion • google certs career • • WrCombs

      24
      0
      Votes
      24
      Posts
      525
      Views

      scottalanmiller

      @Dashrender said in Grow with Google Certs?:

      @scottalanmiller said in Grow with Google Certs?:

      @IRJ said in Grow with Google Certs?:

      @flaxking said in Grow with Google Certs?:

      Sure, it would help you get a job on our customer facing helpdesk

      Yeah and that's about it. If you already work in any IT capacity, this won't gain you anything.

      Like @Dashrender said train for the job you want, not have

      I keep trying to train to be a porn star, but no one lets me.

      No one lets you what? train? LOL

      Exactly

    • scottalanmiller

      Converting CRT and PEM files to RSA
      IT Discussion • ssl trend micro imsva openssl rsa godaddy certs • • scottalanmiller

      7
      0
      Votes
      7
      Posts
      423
      Views

      scottalanmiller

      Found this which didn't help, but could be a useful reference in the future...

      OpenSSL Convert PEM
      Convert PEM to DER

      openssl x509 -outform der -in certificate.pem -out certificate.der

      Convert PEM to P7B

      openssl crl2pkcs7 -nocrl -certfile certificate.cer -out certificate.p7b -certfile CACert.cer

      Convert PEM to PFX

      openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt

      OpenSSL Convert DER
      Convert DER to PEM

      openssl x509 -inform der -in certificate.cer -out certificate.pem

      OpenSSL Convert P7B
      Convert P7B to PEM

      openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer

      Convert P7B to PFX

      openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer

      openssl pkcs12 -export -in certificate.cer -inkey privateKey.key -out certificate.pfx -certfile CACert.cer

      OpenSSL Convert PFX
      Convert PFX to PEM

      openssl pkcs12 -in certificate.pfx -out certificate.cer -nodes

    • DustinB3403

      Solved SSH-Copy-ID for accessing Linux Servers from Windows
      IT Discussion • ssh windows linux certs • • DustinB3403

      3
      1
      Votes
      3
      Posts
      6095
      Views

      DustinB3403

      Okay so figured it out with this guide.

      From Windows administrative Powershell

      ssh-keygen
      type C:\Users\<username>\.ssh\id_rsa.pub | ssh [email protected] 'cat >> .ssh/authorized_keys'

      Exit administrative Powershell

      Open Powershell

      ssh [email protected]

      Logged in.