sceHVAuth_Library

Some new nids:

  • 0x5e335df6 sceHVAuthOpen
  • 0x816a5f92 sceHVAuthAuth
  • 0x9db7de7c sceHVAuthClose

The sceHVAuth lib seems to be used for proxy config settings for the Html Viewer.

C:
  1. /*
  2. Creates an 80 char alphanumeric password
  3. (randomly generated via a time-seeded Mersenne Twister)
  4. */
  5. int sceHVAuthOpen(char *pass);
  6.  
  7. /*
  8. Verifies the password.
  9. hmac is 20-Byte SHA1 HMAC in ascii format
  10. */
  11. int sceHVAuthAuth(char *pass, const char *hmac);
  12.  
  13. /*
  14. Clears the password
  15. */
  16. int sceHVAuthClose(char *pass);

One Response to “sceHVAuth_Library”

  1. Argg, bloody abbreviations. I thought HVauth would be something PS3 related… HyperVisor authentication :P

Leave a Reply