コード例 #1
0
 public Es256Algorithm(IPemPrivateKey privateKey)
     : base(privateKey)
 {
 }
コード例 #2
0
 public Rs384Algorithm(IPemPrivateKey privateKey)
     : base(privateKey)
 {
 }
コード例 #3
0
 public Ps512Algorithm(IPemPrivateKey privateKey)
     : base(privateKey)
 {
 }
コード例 #4
0
 public AsymmetricAlgorithm(IPemPrivateKey privateKey)
 {
     PrivateKey = privateKey;
 }
コード例 #5
0
        public IAlgorithmWithKeyBuilder WithKey(IPemPrivateKey privateKey)
        {
            ((AsymmetricAlgorithm)Algorithm).PrivateKey = privateKey;

            return(this);
        }