Skip to content
View azampunya25's full-sized avatar
🏠
Working from home
🏠
Working from home
  • PT. KB Finansia Multi Finance
  • Jakarta Selatan
Block or Report

Block or report azampunya25

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
azampunya25/README.md

Hey πŸ‘‹, I'm Zam Zam Ahmad Fadliluzaman

Talking about Personal Stuffs:

  • πŸ›  Β  I’m currently working with .Net Framework, .Net Core, Javascript, etc.
  • πŸš€ Β  I’m currently learning Full Stack Development.
  • πŸ‘¨πŸ»β€πŸ’» Β  Most of my projects are available on Github.
  • πŸ’¬ Β  Ask me about anything here! I am happy to help.
  • πŸ‘Ύ Β  Fun fact: Equal is Not Always Equal in Javascript.
  • πŸ“« Β  How to reach me: zamzamcms@gmail.com.
  • πŸ“ Β  Checkout my Resume.

My Absolute Favorites:

  • πŸ’» Β  I love exploring new tech stack and building cool stuffs.
  • πŸ“° Β  Reading & writing tech blogs whenever possible.
  • πŸ• Β  Hackathons, meetups & tech events.

Languages and Tools:

cpp python javascript nodejs react graphql sql mongodb git terminal

Pinned

  1. Convert SHA256 C# Convert SHA256 C#
    1
    public static string ComputeHash256(string plainText)
    2
    {
    3
        SHA256 hashSvc = SHA256.Create();
    4
    
                  
    5
        byte[] hash = hashSvc.ComputeHash(System.Text.Encoding.UTF8.GetBytes(plainText));
  2. How make SHA512 to Base64 String How make SHA512 to Base64 String
    1
    public static string SHA512_ComputeHash(string text, string secretKey)
    2
    {
    3
        var hash = new StringBuilder(); ;
    4
        var secretKeyBytes = Encoding.UTF8.GetBytes(secretKey);
    5
        var inputBytes = Encoding.UTF8.GetBytes(text);