All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.tls.crypto.impl.jcajce.TlsArrays Maven / Gradle / Ivy

package org.bouncycastle.tls.crypto.impl.jcajce;

class TlsArrays
{
    private TlsArrays()
    {
        // static class, hide constructor
    }

    public static boolean areAllZeroes(byte[] buf, int off, int len)
    {
        int bits = 0;
        for (int i = 0; i < len; ++i)
        {
            bits |= buf[off + i];
        }
        return bits == 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy