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

com.thebund1st.daming.jwt.key.file.FileKeyLoader Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package com.thebund1st.daming.jwt.key.file;

import com.thebund1st.daming.jwt.key.KeyBytesLoader;
import lombok.Setter;
import lombok.SneakyThrows;

import java.nio.file.Files;
import java.nio.file.Paths;

public class FileKeyLoader implements KeyBytesLoader {

    @Setter
    private String privateKeyFileLocation = "./sms-verification-private.der";

    @Override
    @SneakyThrows
    public byte[] getBytes() {
        return Files.readAllBytes(Paths.get(privateKeyFileLocation));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy