summary refs log tree commit diff
path: root/Crypto/src/openssl/IPasswordFinder.cs
blob: 4fcef1bd79233942aab1642e6692d546d44e6b2d (plain) (blame)
1
2
3
4
5
6
7
8
9
using System;

namespace Org.BouncyCastle.OpenSsl
{
	public interface IPasswordFinder
	{
		char[] GetPassword();
	}
}