8gwifi.org Open in urlscan Pro
2a06:98c1:3120::3  Public Scan

URL: https://8gwifi.org/base64Hex.jsp
Submission: On April 29 via manual from AU — Scanned from NL

Form analysis 2 forms found in the DOM

POST

<form id="form" method="POST">
  <input type="hidden" name="methodName" id="methodName" value="BASE64HEX">
  <div class="form-check">
    <input class="form-check-input" type="radio" name="baseg4hex" id="tobase64" value="tobase64" checked="">
    <label class="form-check-label" for="tobase64"> Base64 to Hex </label>
  </div>
  <div class="form-check">
    <input class="form-check-input" type="radio" name="baseg4hex" id="tohex" value="tohex">
    <label class="form-check-label" for="tohex"> Hex to Base64 </label>
  </div>
  <div class="form-group row" id="descryptmsg">
    <label for="delimiter" class="font-weight-bold col-sm-2 col-form-label">Deliminated By</label>
    <div class="col-sm-10">
      <input checked="checked" type="radio" id="delimiter" name="delimiter" value="">Nothing <input type="radio" id="delimiter1" name="delimiter" value=" ">SPACE <input type="radio" id="delimiter2" name="delimiter" value=":">:(Colon)
    </div>
  </div>
  <div class="form-group row">
    <label for="message" class="font-weight-bold col-sm-2 col-form-label">Input</label>
    <div class="col-sm-10">
      <textarea rows="3" cols="10" class="form-control" name="message" id="message">SGVsbG8gOGd3aWZpLm9yZw==</textarea>
    </div>
  </div>
  <input class="btn btn-primary" type="submit" id="submit" name="Sign CSR">
</form>

<form>
  <input type="submit" value="Check it out">
</form>

Text Content

8gwifi.org - Crypto Playground
 * COVID-19 Analytics
 * Tech Blogs
 * REST API
 * Download Software
 * Hire Me!

--------------------------------------------------------------------------------


CONVERT BASE64 TO HEX VICEVERSA

Loading!

--------------------------------------------------------------------------------

Base64 to Hex
Hex to Base64
Deliminated By
Nothing SPACE :(Colon)
Input
SGVsbG8gOGd3aWZpLm9yZw==


--------------------------------------------------------------------------------


TRY OTHER CONVERTOR

 * URL Encoders/Decoders
 * Hex To String Conversion
 * String To Hex Conversion
 * Base64 To Hex (ViceVersa)
 * Base64 Encode/Decode
 * Various String Functions
 * Feature Request

30 Shares
Share
Tweet
Pin
Email
Share
Share
Share

--------------------------------------------------------------------------------

Thanks for using this software, for Cofee/Beer/Amazon bill and further
development of this project please Share.

Any private key value that you enter or we generate is not stored on this site,
this tool is provided via an HTTPS URL to ensure that private keys cannot be
stolen, for extra security run this software on your network, no cloud
dependency

Asking for donation sound bad to me, so i'm raising fund from by offering all my
Nine book for just $9

--------------------------------------------------------------------------------

--------------------------------------------------------------------------------


PHP EXAMPLE BASE64 TO HEX

<?php
$string1 = 'SGVsbG8gOGd3aWZpLm9yZw==';
$binary = base64_decode($string1);
$hex = bin2hex($binary);
echo $hex;
?>



PYTHON EXAMPLE BASE64 TO HEX

>>> import base64
>>> base64.b64decode('SGVsbG8gOGd3aWZpLm9yZw==').encode('hex')
'48656c6c6f203867776966692e6f7267'



HEXT TO BASE64

$ echo "48656c6c6f203867776966692e6f7267" | xxd -r -p | base64
SGVsbG8gOGd3aWZpLm9yZw==




CRYPTOPGRAPHY SERVICES

 * Nacl xsalsa20 Encryption & Decryption
 * Nacl AEAD Encryption & Decryption
 * Nacl Box Encryption & Decryption
 * Nacl SealBox Encryption & Decryption
 * Generate Message Digest(Text)
 * Generate Message Digest(File)
 * Generate HMAC
 * Encryption/Decryption
 * Fernet Encryption/Decryption
 * RSA Encryption/Decryption
 * RSA Signature/Verification
 * Lattice Cryptography Encryption
 * DSA Keygen,Sign File,Verify Sig
 * Elliptic Curve Encryption/Decryption
 * Elliptic Curve Sign/Verify Message
 * ELGAMAL Encryption/Decryption
 * PBKDF2 Derivekey
 * PBE (PBKDF) Encryption/Decryption
 * PGP Encryption/Decryption
 * PGP Key Generation
 * PGP Signature Verifier
 * PGPKeyDumper
 * BCrypt Password Hash
 * SCrypt Password Hash
 * .htpasswd Generator
 * Diffie-Hellman Key Exchange
 * PEMReader Decode Certificate
 * Extract Public key from Private Key
 * Extract Certs from URL
 * PKCS#8 PKCS#1 RSA,DSA,EC Converter
 * Encrypted PEM password finder
 * Strong Random Passwd Generator
 * UUID/GUID Generator
 * Generate Self Sign Certificate
 * Generate rootCA/InterCA/Certs
 * Verify private key against csr,x509
 * OCSP Query
 * Sign CSR
 * SSH-Keygen
 * Easy Keystore/trustore viewer
 * SAML Sign Message
 * SAML Verify Sign / Others
 * JSON Web Key (JWK) Generate
 * JSON Web Key (JWK) to PEM Convert
 * JWS Parser
 * JWS Generate Key Sign Data
 * JWS Sign Data with custom key
 * JWS Signature Verification



DEVOPS/CONTAINER TOOLS

 * Kubernetes Spec Generate(Pods/svc)
 * Docker to Kubernetes Conversion
 * Kubernetes to Docker Compose Conversion
 * Docker Compose file Generator
 * Docker run to Docker Compose Convert
 * Docker Compose to Docker run Convert
 * Ansible Generator(AWS)
 * AWS SMTP password Generator

NETWORK SERVICES

 * IP Subnet CIDR Calculator
 * Ping/Locate IPv4/Iv6
 * Curl IPv4/IPv6
 * DNS lookup
 * DMARC Record lookup

MISCELLANEOUS SERVICES

 * QR Code Generate
 * Online Hexdump Generate
 * Compare text differences
 * URL Encoders/Decoders
 * Hex To String Conversion
 * String To Hex Conversion
 * Base64 To Hex (ViceVersa)
 * Base64 Encode/Decode
 * Base64 Image Converter(data:image/png)
 * Various String Functions
 * JSON-2-YAML/XML
 * YAML-2-JSON/XML
 * XML-2-JSON/YAML
 * Feature Request



THE MODERN CRYPTOGRAPHY BOOK



KUBERNETES FOR DEVOPS





CRYPTOGRAPHY FOR PYTHON DEVELOPERS



CRYPTOGRAPHY FOR JAVASCRIPT DEVELOPERS



GO LANG CRYPTOGRAPHY FOR DEVELOPERS



FEATURE REQUEST COMING SOON!!!

 * Remove add passwowrd to PEM files
 * Blockchain keygen signature gen & verify
 * OPenssl Key Managenet UI
 * TLS Checker
 * iptables rule to firewalld geneator
 * File Encryption & decryption
 * UI Improvement (few Pages shows Older UI)
 * Send Feature Request here

Grab 9 Book (5 Cryptography + 4 Devops/Kubernetes) forJust $9 Grab 9 book for
Just $9 We just launched an amazing new books for read on
Devops/Kubernetes/Security/Cryptography. Stay Safe from Corona Virus