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:
authorRoberto Tyley <roberto.tyley@gmail.com>2014-07-15 01:38:01 +0400
committerRoberto Tyley <roberto.tyley@gmail.com>2014-07-26 11:23:17 +0400
commit7cb752aaf746dc0b473afeb9e892b7fbc12666c5 (patch)
treecc4f91ddc18332b5adbe82e3fcb040d976c90105 /pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java
parent551830f8ea5177042af2c7dd1fc90888bc67387d (diff)
Execute become-spongy.sh
https://github.com/rtyley/spongycastle/blob/3040af/become-spongy.sh
Diffstat (limited to 'pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java')
-rw-r--r--pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java b/pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java
new file mode 100644
index 00000000..70bf4d27
--- /dev/null
+++ b/pg/src/main/java/org/spongycastle/bcpg/ModDetectionCodePacket.java
@@ -0,0 +1,45 @@
+package org.spongycastle.bcpg;
+
+import java.io.*;
+
+/**
+ * basic packet for a modification detection code packet.
+ */
+public class ModDetectionCodePacket
+ extends ContainedPacket
+{
+ private byte[] digest;
+
+ ModDetectionCodePacket(
+ BCPGInputStream in)
+ throws IOException
+ {
+ this.digest = new byte[20];
+ in.readFully(this.digest);
+ }
+
+ public ModDetectionCodePacket(
+ byte[] digest)
+ throws IOException
+ {
+ this.digest = new byte[digest.length];
+
+ System.arraycopy(digest, 0, this.digest, 0, this.digest.length);
+ }
+
+ public byte[] getDigest()
+ {
+ byte[] tmp = new byte[digest.length];
+
+ System.arraycopy(digest, 0, tmp, 0, tmp.length);
+
+ return tmp;
+ }
+
+ public void encode(
+ BCPGOutputStream out)
+ throws IOException
+ {
+ out.writePacket(MOD_DETECTION_CODE, digest, false);
+ }
+}