Example #1
0
 ///<param name = "the_alg">an algorithm identifier</param>
 ///<param name = "the_algProperties">the attributes of the algorithm</param>
 public AlgProperty(
 TpmAlgId the_alg,
 AlgorithmAttr the_algProperties
 )
 {
     this.alg = the_alg;
     this.algProperties = the_algProperties;
 }
Example #2
0
 public AlgProperty(AlgProperty the_AlgProperty)
 {
     if((Object) the_AlgProperty == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     alg = the_AlgProperty.alg;
     algProperties = the_AlgProperty.algProperties;
 }
Example #3
0
 public AlgProperty()
 {
     alg = TpmAlgId.Null;
     algProperties = new AlgorithmAttr();
 }
Example #4
0
 ///<param name = "the_alg">an algorithm</param>
 ///<param name = "the_attributes">the attributes of the algorithm</param>
 public AlgorithmDescription(
 TpmAlgId the_alg,
 AlgorithmAttr the_attributes
 )
 {
     this.alg = the_alg;
     this.attributes = the_attributes;
 }
Example #5
0
 public AlgorithmDescription(AlgorithmDescription the_AlgorithmDescription)
 {
     if((Object) the_AlgorithmDescription == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     alg = the_AlgorithmDescription.alg;
     attributes = the_AlgorithmDescription.attributes;
 }
Example #6
0
 public AlgorithmDescription()
 {
     alg = TpmAlgId.Null;
     attributes = new AlgorithmAttr();
 }