Skip to content

Commit

Permalink
Add missing getter method for applicationKey in SessionContext (#776)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowar authored Aug 7, 2023
1 parent 4633709 commit a54cf64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/hierynomus/smbj/session/SessionContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ public SecretKey getEncryptionKey() {
return encryptionKey;
}

public SecretKey getApplicationKey() {
return applicationKey;
}

public void setEncryptionKey(SecretKey encryptionKey) {
this.encryptionKey = encryptionKey;
}
Expand Down

0 comments on commit a54cf64

Please sign in to comment.