Skip to content

Commit ee65e8a

Browse files
committed
Fix Javadoc errors
1 parent 55fba61 commit ee65e8a

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

driver/src/main/java/com/impossibl/postgres/protocol/sasl/scram/client/ScramSession.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ public String getChannelBindMethod() {
134134

135135
/**
136136
* Generates a client-final-message from the received server-first-message, channel-bind data (if any),
137-
* and the user's password. A matching {@link ClientFinalProcessor} is stored internally for a later call to
138-
* {@link #receiveServerFinalMessage(String)} to complete the authentication.
137+
* and the user's password. A matching {@link ScramSession.ClientFinalProcessor} is stored internally for a
138+
* later call to {@link #receiveServerFinalMessage(String)} to complete the authentication.
139139
*
140140
* @param serverFirstMessage The message
141141
* @param channelBindData Optional channel-bind data (my be null)
@@ -157,8 +157,8 @@ public byte[] receiveServerFirstMessage(String serverFirstMessage, byte[] channe
157157
/**
158158
* Generates a client-final-message from the received server-first-message, channel-bind data (if any),
159159
* and the clientKey and storedKey which, if available, provide an optimized path versus providing the original
160-
* user's passwordthe user's password. A matching {@link ClientFinalProcessor} is stored internally for a later call
161-
* to {@link #receiveServerFinalMessage(String)} to complete the authentication.
160+
* user's passwordthe user's password. A matching {@link ScramSession.ClientFinalProcessor} is stored internally
161+
* for a later call to {@link #receiveServerFinalMessage(String)} to complete the authentication.
162162
*
163163
* @param serverFirstMessage The message
164164
* @param channelBindData Optional channel-bind data (my be null)

driver/src/main/java/com/impossibl/postgres/protocol/sasl/scram/util/CryptoUtil.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,6 @@ public static byte[] hmac(SecretKeySpec secretKeySpec, Mac mac, byte[] message)
146146
* this operator. The length of the output and each of the two
147147
* inputs will be the same for this use.
148148
* }
149-
*
150-
* @param value1
151-
* @param value2
152-
* @return
153-
* @throws IllegalArgumentException
154149
*/
155150
public static byte[] xor(byte[] value1, byte[] value2) throws IllegalArgumentException {
156151
checkNotNull(value1, "value1");

0 commit comments

Comments
 (0)