fix: add fallback for non windows
This commit is contained in:
@@ -720,15 +720,7 @@ pub async fn has_net8() -> bool {
|
|||||||
is_net8_installed().await
|
is_net8_installed().await
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
#[cfg(windows)]
|
||||||
* osu!.exe decompile result:
|
|
||||||
* dpapi cipher is most likely: cu24180ncjeiu0ci1nwui
|
|
||||||
* dpapi key type is: 1
|
|
||||||
*
|
|
||||||
* example call for encryption: DPAPI.Encrypt((DPAPI.KeyType)1, this.storage.UnsecureRepresentation(), "cu24180ncjeiu0ci1nwui", this.representation.ToString());
|
|
||||||
* the method args are following: Encrypt(DPAPI.KeyType keyType, byte[] plainTextBytes, byte[] entropyBytes, string description)
|
|
||||||
*/
|
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn encrypt_string(string: String, entropy: String) -> String {
|
pub fn encrypt_string(string: String, entropy: String) -> String {
|
||||||
let encrypted = encrypt_password(&string, &entropy);
|
let encrypted = encrypt_password(&string, &entropy);
|
||||||
@@ -741,3 +733,10 @@ pub fn encrypt_string(string: String, entropy: String) -> String {
|
|||||||
Err(_) => string,
|
Err(_) => string,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NOTE: should not be called by tauri on non windows systems, return the string nonthenless
|
||||||
|
#[cfg(not(windows))]
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn encrypt_string(string: String, _entropy: String) -> String {
|
||||||
|
string
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user