renaming to adhere to GoogleStyle conventions

This commit is contained in:
Dave
2015-06-28 21:50:46 +02:00
parent 6ff5e60046
commit a40d5e9738
6 changed files with 27 additions and 27 deletions

View File

@@ -53,7 +53,7 @@ public abstract class NoInfluence implements Serializable {
keyGen.init(NoUtil.AES_STRENGTH);
SecretKey secretKey = keyGen.generateKey();
byte[] key = secretKey.getEncoded();
byte[] encryptedKey = NoUtil.encryptRSA(key, publicKey);
byte[] encryptedKey = NoUtil.encryptRsa(key, publicKey);
byte[] data = this.getEncrypted(key);
NoUtil.wipeBytes(key);
return new NoByteSet(encryptedKey, data);