// 
// Decompiled by Procyon v0.6.0
// 

package com.google.crypto.tink.subtle;

public final class Random
{
    public static byte[] randBytes(final int size) {
        return com.google.crypto.tink.internal.Random.randBytes(size);
    }
    
    public static final int randInt(final int max) {
        return com.google.crypto.tink.internal.Random.randInt(max);
    }
    
    public static final int randInt() {
        return com.google.crypto.tink.internal.Random.randInt();
    }
    
    private Random() {
    }
}
