@@ -16,11 +16,11 @@ public ExampleArcSigner (Stream stream, string domain, string selector, DkimSign
16
16
{
17
17
}
18
18
19
- public DummyArcSigner ( string fileName , string domain , string selector , DkimSignatureAlgorithm algorithm = DkimSignatureAlgorithm . RsaSha256 ) : base ( fileName , domain , selector , algorithm )
19
+ public ExampleArcSigner ( string fileName , string domain , string selector , DkimSignatureAlgorithm algorithm = DkimSignatureAlgorithm . RsaSha256 ) : base ( fileName , domain , selector , algorithm )
20
20
{
21
21
}
22
22
23
- public DummyArcSigner ( AsymmetricKeyParameter key , string domain , string selector , DkimSignatureAlgorithm algorithm = DkimSignatureAlgorithm . RsaSha256 ) : base ( key , domain , selector , algorithm )
23
+ public ExampleArcSigner ( AsymmetricKeyParameter key , string domain , string selector , DkimSignatureAlgorithm algorithm = DkimSignatureAlgorithm . RsaSha256 ) : base ( key , domain , selector , algorithm )
24
24
{
25
25
}
26
26
@@ -90,8 +90,8 @@ public static void Main (string[] args)
90
90
91
91
var headers = new HeaderId [ ] { HeaderId . From , HeaderId . Subject , HeaderId . Date } ;
92
92
var signer = new ExampleArcSigner ( "privatekey.pem" , "example.com" , "brisbane" , DkimSignatureAlgorithm . RsaSha256 ) {
93
- HeaderCanonicalizationAlgorithm = DkimCanonicalizationAlgorithm . Simple ,
94
- BodyCanonicalizationAlgorithm = DkimCanonicalizationAlgorithm . Simple ,
93
+ HeaderCanonicalizationAlgorithm = DkimCanonicalizationAlgorithm . Simple ,
94
+ BodyCanonicalizationAlgorithm = DkimCanonicalizationAlgorithm . Simple ,
95
95
AgentOrUserIdentifier = "@eng.example.com" ,
96
96
} ;
97
97
0 commit comments