Package org.bouncycastle.crypto.digests

Examples of org.bouncycastle.crypto.digests.SHA224Digest.update()


        //
        // test 2
        //
        byte[]  bytes = Hex.decode(testVec2);

        digest.update(bytes, 0, bytes.length);

        digest.doFinal(resBuf, 0);

        resStr = new String(Hex.encode(resBuf));
        if (!resVec2.equals(resStr))
View Full Code Here


        //
        // test 3
        //
        bytes = Hex.decode(testVec3);

        digest.update(bytes, 0, bytes.length);

        digest.doFinal(resBuf, 0);

        resStr = new String(Hex.encode(resBuf));
        if (!resVec3.equals(resStr))
View Full Code Here

        //
        // test 4
        //
        bytes = Hex.decode(testVec4);

        digest.update(bytes, 0, bytes.length);

        digest.doFinal(resBuf, 0);

        resStr = new String(Hex.encode(resBuf));
        if (!resVec4.equals(resStr))
View Full Code Here

        //
        // test 5
        //
        bytes = Hex.decode(testVec4);

        digest.update(bytes, 0, bytes.length/2);

        // clone the Digest
        Digest d = new SHA224Digest((SHA224Digest)digest);

        digest.update(bytes, bytes.length/2, bytes.length - bytes.length/2);
View Full Code Here

                + "    expected: " + resVec4
                + System.getProperty("line.separator")
                + "    got     : " + resStr);
        }

        d.update(bytes, bytes.length/2, bytes.length - bytes.length/2);
        d.doFinal(resBuf, 0);

        resStr = new String(Hex.encode(resBuf));
        if (!resVec4.equals(resStr))
        {
View Full Code Here

      DataOutputStream dos = new DataOutputStream(new OutputStream() {

        @Override
        public void write(int b) {

          sha.update((byte) b);
        }

        @Override
        public void write(byte[] buf, int off, int len) {
View Full Code Here

        }

        @Override
        public void write(byte[] buf, int off, int len) {

          sha.update(buf, off, len);
        }

      });
      dos.writeLong(userID);
      dos.write(passphrase.getBytes(Charset.forName("UTF-8")));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.