• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OmegaChartのソースコードの保守


File Info

Rev. 9cd2e32808deefe5bc4041be433772fef9fe3cbe
Tamaño 557 octetos
Tiempo 2017-03-03 18:40:22
Autor panacoran
Log Message

上場してから出来高のない銘柄でスクリーニングが失敗するのを再度直す

Content

/*
 * 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";

	}
}