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:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-12-17 14:15:28 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-12-17 14:15:28 +0400
commit448763c9873ff03f1c224b00423ddc5dc02915d7 (patch)
tree028350b41658434a02629232cbc6dd4b11da742c /core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java
parentd6233adf55f4fe86111b5155ebeef5a30b7a7f4c (diff)
A few small cleanups
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java b/core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java
index a5a591ee..9404a72f 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/SignatureAndHashAlgorithm.java
@@ -75,8 +75,8 @@ public class SignatureAndHashAlgorithm
public void encode(OutputStream output)
throws IOException
{
- TlsUtils.writeUint8(hash, output);
- TlsUtils.writeUint8(signature, output);
+ TlsUtils.writeUint8(getHash(), output);
+ TlsUtils.writeUint8(getSignature(), output);
}
/**