mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-02 20:02:49 +08:00
Merge pull request #925 from GRain-long/patch-1
modify BaseAsymmetric.java
This commit is contained in:
commit
039ff77621
@ -143,7 +143,8 @@ public class BaseAsymmetric<T extends BaseAsymmetric<T>> {
|
||||
* @return 获得私钥
|
||||
*/
|
||||
public String getPrivateKeyBase64() {
|
||||
return Base64.encode(getPrivateKey().getEncoded());
|
||||
final PrivateKey privateKey = getPrivateKey();
|
||||
return (null == privateKey) ? null : Base64.encode(privateKey.getEncoded());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user