Examples of MacDigestManager


Examples of org.apache.bookkeeper.client.MacDigestManager

         * Populate ledger cache
         */
        try {
            byte[] masterKey = "blah".getBytes();
            for( int i = 0; i < 30000; i++) {
                MacDigestManager dm = new MacDigestManager(i, masterKey);
                byte[] data = "0123456789".getBytes();
                ByteBuffer entry = dm.computeDigestAndPackageForSending(0, 0, 10, data, 0, data.length).toByteBuffer();
                bookie.addEntry(entry, new TestWriteCallback(), null, masterKey);
            }
        } catch (IOException e) {
            LOG.error("Got IOException.", e);
            fail("Failed to add entry.");
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.