Can a 512-bit HMACSHA512 machine key in IIS be 256 characters long?

Why when generating the HMACSHA512 machine key in IIS on the 2012 server, the output of the verification key is 128 characters, but when I generate the same key using the Microsoft PowerShell function ( https://support.microsoft.com/en-us/kb/2915218# AppendixA ) Am I getting a 256-character key?

This article says that a 512-bit key must contain 128 characters, and a 256-bit key must be 64 characters long: https://msdn.microsoft.com/en-us/library/w8h3skw9(v=vs.100) .aspx

IIS gui generates keys that are 128 characters for the HMACSHA512 and HMACSHA256. How long have these keys been and are correct or the correct PowerShell function?

+7
cryptography iis
source share

No one has answered this question yet.

See related questions:

355
Java 256-bit password-based AES encryption
nine
Difference between HMACSHA256 and HMACSHA512
4
Can I use a 128-bit key in the HMAC-SHA256?
3
Encryption. How to turn an 8-digit string into a 128-bit key, 256-bit key, etc.?
3
Is it safe to use PBKDF2 with SHA256 to generate 128-bit AES keys?
2
How to generate shorter private key for ECDSA (secp256k1) in Python Cryptography
one
AES encryption examples that use the wrong key size
one
Getting the correct SHA-256 hash of a 128 bit binary string in PHP
one
256-byte AES key RSA encryption
one
Difference in encryption time between 128-bit AES and 256-bit AES?

All Articles