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

org.whispersystems.curve25519.java.Arrays Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package org.whispersystems.curve25519.java;

public class Arrays {
  /**
   * Assigns the specified byte value to each element of the specified array
   * of bytes.
   *
   * @param a the array to be filled
   * @param val the value to be stored in all elements of the array
   */
  public static void fill(byte[] a, byte val) {
    for (int i = 0, len = a.length; i < len; i++)
      a[i] = val;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy