BitSharper.EcKey.GetPrivateKeyEncoded C# (CSharp) 메소드

GetPrivateKeyEncoded() 공개 메소드

Exports the private key in the form used by the Satoshi client "dumpprivkey" and "importprivkey" commands. Use the DumpedPrivateKey.ToString method to get the string.
public GetPrivateKeyEncoded ( NetworkParameters @params ) : DumpedPrivateKey
@params NetworkParameters
리턴 DumpedPrivateKey
        public DumpedPrivateKey GetPrivateKeyEncoded(NetworkParameters @params)
        {
            return new DumpedPrivateKey(@params, GetPrivKeyBytes());
        }