replace tab with 4 spaces

pull/12/head
Aaron Jense 2018-06-29 15:33:30 -06:00
parent b0839d524f
commit 44d872ad16
1 changed files with 11 additions and 11 deletions

View File

@ -29,18 +29,18 @@ package com.wolfssl.wolfcrypt;
*/
public class WolfCrypt extends WolfObject {
public static final int SUCCESS = 0;
public static final int SUCCESS = 0;
public static final int FAILURE = -1;
public static final int SIZE_OF_128_BITS = 16;
public static final int SIZE_OF_160_BITS = 20;
public static final int SIZE_OF_192_BITS = 24;
public static final int SIZE_OF_256_BITS = 32;
public static final int SIZE_OF_384_BITS = 48;
public static final int SIZE_OF_512_BITS = 64;
public static final int SIZE_OF_1024_BITS = 128;
public static final int SIZE_OF_2048_BITS = 256;
public static final int SIZE_OF_128_BITS = 16;
public static final int SIZE_OF_160_BITS = 20;
public static final int SIZE_OF_192_BITS = 24;
public static final int SIZE_OF_256_BITS = 32;
public static final int SIZE_OF_384_BITS = 48;
public static final int SIZE_OF_512_BITS = 64;
public static final int SIZE_OF_1024_BITS = 128;
public static final int SIZE_OF_2048_BITS = 256;
private WolfCrypt() {
}
private WolfCrypt() {
}
}