Editing Keystone

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 37: Line 37:
=== Generation ===
=== Generation ===


SCE provides in official PS4 SDK a tool called pc2ks that converts a passcode to a keystone.
SCE provides in official SDK a tool called pc2ks that converts a passcode to a keystone.


Below is a simple reimplementation of PS4 pc2ks in '''python3''' by SocraticBliss.
Below is a simple reimplementation of pc2ks in '''CSharp'''.
<source lang="python3">
from binascii import unhexlify as uhx
import hashlib
import hmac
import sys
 
keystone_passcode_secret = uhx('C74405F67424BA342BC1276251BBC2F555F16025B6A1B6714780DBAEC852FA2F')
keystone_ks_secret = uhx('783D6F3AE91C0E0712FCAAB7950BDE06855CF7A22DCDBDE127E9BFCBAD0FF0FE')
 
keystone = '6B657973746F6E65020001000000000000000000000000000000000000000000'
 
def main(argc, argv):
    passcode = '00000000000000000000000000000000'
 
    if argc == 2:
        if len(argv[1]) == 32:
            passcode = argv[1]
        else:
            print('\nERROR: Passcode Must Be 32 Digits!')
            sys.exit(1)
 
    print('\npasscode = %s' % passcode)
    fingerprint = hmac.new(keystone_passcode_secret, passcode.encode(encoding = 'UTF-8'), hashlib.sha256).hexdigest().upper()
    print('fingerprint = %s' % fingerprint)
    sha256hmac  = hmac.new(keystone_ks_secret, uhx(keystone + fingerprint), hashlib.sha256).hexdigest().upper()
    print('sha256hmac  = %s' % sha256hmac)
 
    print('\nkeystone\n%s\n%s\n%s' % (keystone, fingerprint, sha256hmac))
 
if __name__=='__main__':
    sys.exit(main(len(sys.argv), sys.argv))
</source>
 
Below is a simple reimplementation of PS4 pc2ks in '''CSharp'''.
<source lang="csharp">
<source lang="csharp">
public static byte [] GenerateKeystoneFile (string passcode)
public static byte [] GenerateKeystoneFile (string passcode)
Line 102: Line 67:
     // 6. Concat the constant bytes from point 1, the fingerprint from point 3 and the hmac from point 5
     // 6. Concat the constant bytes from point 1, the fingerprint from point 3 and the hmac from point 5
     keystone = keystone.Concat(sha256hmac).ToArray();
     keystone = keystone.Concat(sha256hmac).ToArray();


     return keystone;
     return keystone;
}
}
</source>
</source>
Please note that all contributions to PS4 Developer wiki are considered to be released under the GNU Free Documentation License 1.2 (see PS4 Developer wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following hCaptcha:

Cancel Editing help (opens in new window)