OmegaChartのソースコードの保守
Rev. | 9cd2e32808deefe5bc4041be433772fef9fe3cbe |
---|---|
Tamaño | 557 octetos |
Tiempo | 2017-03-03 18:40:22 |
Autor | panacoran |
Log Message | 上場してから出来高のない銘柄でスクリーニングが失敗するのを再度直す
|
/*
* Copyright (c) Daisuke OKAJIMA All rights reserved.
*
* $Id$
*/
using System;
using Travis.PKI;
namespace Zanetti
{
/// <summary>
/// PublicKey の概要の説明です。
/// </summary>
internal class ZPublicKey
{
public static RSAPublicKey PubKeyForExtensionKit {
get {
return new RSAPublicKey(new BigInteger(EXPONENT, 16), new BigInteger(MODULUS, 16));
}
}
private const string MODULUS = "C72F06709DEE9F0E0A6281C4DF91A423C6BFF781BAD00980DF19FB9731F85783";
private const string EXPONENT = "21";
}
}