Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java')
-rw-r--r--src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java b/src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java
index 4d5f73b1..2f6eea26 100644
--- a/src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java
+++ b/src/main/java/org/bouncycastle/crypto/tls/TlsPSKIdentity.java
@@ -2,11 +2,11 @@ package org.bouncycastle.crypto.tls;
public interface TlsPSKIdentity
{
- void skipIdentityHint();
+ void skipIdentityHint();
- void notifyIdentityHint(byte[] psk_identity_hint);
+ void notifyIdentityHint(byte[] psk_identity_hint);
- byte[] getPSKIdentity();
+ byte[] getPSKIdentity();
- byte[] getPSK();
+ byte[] getPSK();
}