我正在尝试使用数字签名对 PDF 文件进行签名,为此需要数据加密。
我必须使用一个包含加密密钥属性的文件来实现这一点,但我真的不知道它应该是什么类型的文件。
在一个例子中,我发现它只是说:
/**
* A properties file that is PRIVATE.
* You should make your own properties file and adapt this line.
*/
public static String PATH = "c:/home/key.properties";
/** Some properties used when signing. */
public static Properties properties = new Properties();
但是我怎样才能获得这个“key.properties”文件以及它应该是什么样的呢?