mirror of
				https://github.com/noDRM/DeDRM_tools.git
				synced 2025-10-23 23:07:47 -04:00 
			
		
		
		
	Merge pull request #1348 from fireattack/master
Convert all to bytes first before concat (fix for Windows routine)
This commit is contained in:
		
						commit
						e2e19fb50f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -1084,7 +1084,7 @@ if iswindows: | |||
|             added_entropy = build + guid | ||||
|         elif version == 6:  # .kinf2018 | ||||
|             salt = str(0x6d8 * int(build)).encode('utf-8') + guid | ||||
|             sp = GetUserName() + '+@#$%+' + GetIDString() | ||||
|             sp = GetUserName() + b'+@#$%+' + GetIDString().encode('utf-8') | ||||
|             passwd = encode(SHA256(sp), charMap5) | ||||
|             key = KeyIVGen().pbkdf2(passwd, salt, 10000, 0x400)[:32]  # this is very slow | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Apprentice Harper
						Apprentice Harper