mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 05:35:39 +03:00
Remove unused codes
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
99f7b672d8
commit
caaacab0a7
1 changed files with 0 additions and 29 deletions
|
@ -640,35 +640,6 @@ public final class EncryptionUtils {
|
|||
}
|
||||
}
|
||||
|
||||
// FIXME Decryption is broken
|
||||
/*
|
||||
public static byte[] decryptFile(
|
||||
Cipher cipher,
|
||||
File file,
|
||||
byte[] authenticationTag,
|
||||
ArbitraryDataProvider arbitraryDataProvider,
|
||||
User user)
|
||||
throws BadPaddingException, IllegalBlockSizeException, IOException {
|
||||
|
||||
RandomAccessFile randomAccessFile = new RandomAccessFile(file, "r");
|
||||
byte[] fileBytes = new byte[(int) randomAccessFile.length()];
|
||||
randomAccessFile.readFully(fileBytes);
|
||||
|
||||
// check authentication tag
|
||||
byte[] extractedAuthenticationTag = Arrays.copyOfRange(fileBytes,
|
||||
fileBytes.length - (128 / 8),
|
||||
fileBytes.length);
|
||||
|
||||
if (!Arrays.equals(extractedAuthenticationTag, authenticationTag)) {
|
||||
reportE2eError(arbitraryDataProvider, user);
|
||||
throw new SecurityException("Tag not correct");
|
||||
}
|
||||
|
||||
return cipher.doFinal(fileBytes);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Encrypt string with RSA algorithm, ECB mode, OAEPWithSHA-256AndMGF1 padding Asymmetric encryption, with private
|
||||
* and public key
|
||||
|
|
Loading…
Reference in a new issue