폰트사이즈, 폰트, 테마 변경

 

 

void _exit(int status __attribute__((unused)))
{
// XXX: should call cc3_power_down
while(1);
}
int _link(char *old __attribute__((unused)),
char *new __attribute__((unused))) {
// we do not support hard links
errno = EPERM;
return -1;
}
int _gettimeofday (struct timeval *tp __attribute__((unused)),
struct timezone *tzp __attribute__((unused))) {
return -1;
}

sdsdfs

ivps.getIV();

protected void engineInit(AlgorithmParameterSpec paramSpec)
throws InvalidParameterSpecException {

    if (!(paramSpec instanceof IvParameterSpec)) {
        throw new InvalidParameterSpecException
            ("Inappropriate parameter specification");
    }
    IvParameterSpec ivps = (IvParameterSpec)paramSpec;

    // Obtain the nonce
    nonce = ivps.getIV();
    if (nonce.length != 12) {
        throw new InvalidParameterSpecException("ChaCha20-Poly1305 nonce" +
                " must be 12 bytes in length");
    }
}

 

+ Recent posts