Skip to content

Commit

Permalink
Make encrypt method package protected again #59
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpadberg authored and martinvisser committed Jun 2, 2023
1 parent 5d47644 commit 15a837c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class EncryptionService {
this.cipher = cipher;
}

public String encrypt(final String value) {
String encrypt(final String value) {
try {
return Base64.toBase64String(cipher.doFinal(value.getBytes()));
} catch (final Exception e) {
Expand Down

0 comments on commit 15a837c

Please sign in to comment.