コード例 #1
0
ファイル: PGPKeyring.cs プロジェクト: agglerithm/CJRFTP
 public void RemovePublicKey(IPGPPublicKey key, bool remove_secret_key)
 {
     RemovePublicKey(key.Key, remove_secret_key);
 }
コード例 #2
0
ファイル: PGPKeyring.cs プロジェクト: agglerithm/CJRFTP
 public void AddPublicKey(IPGPPublicKey publicKey)
 {
     AddPublicKey(publicKey.Key);
 }
コード例 #3
0
ファイル: PGPKeys.cs プロジェクト: agglerithm/CJRFTP
 public void AddPublicKey(IPGPPublicKey encrypt_key)
 {
     _public_keyring.Clear();
     _public_keyring.AddPublicKey(encrypt_key);
 }