@@ -97,7 +97,7 @@ void testSimpleTDFEncryptAndDecrypt() throws Exception {
9797 assertion1 .statement .format = "base64binary" ;
9898 assertion1 .statement .schema = "text" ;
9999 assertion1 .statement .value = "ICAgIDxlZGoOkVkaD4=" ;
100- assertion1 .assertionKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .HS256 , key );
100+ assertion1 .signingKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .HS256 , key );
101101
102102 Config .TDFConfig config = Config .newTDFConfig (
103103 Config .withAutoconfigure (false ),
@@ -151,7 +151,7 @@ void testSimpleTDFWithAssertionWithRS256() throws Exception {
151151 assertionConfig .statement .format = "base64binary" ;
152152 assertionConfig .statement .schema = "text" ;
153153 assertionConfig .statement .value = "ICAgIDxlZGoOkVkaD4=" ;
154- assertionConfig .assertionKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .RS256 ,
154+ assertionConfig .signingKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .RS256 ,
155155 keypair .getPrivate ());
156156
157157 Config .TDFConfig config = Config .newTDFConfig (
@@ -195,7 +195,7 @@ void testWithAssertionVerificationDisabled() throws Exception {
195195 assertionConfig .statement .format = "base64binary" ;
196196 assertionConfig .statement .schema = "text" ;
197197 assertionConfig .statement .value = "ICAgIDxlZGoOkVkaD4=" ;
198- assertionConfig .assertionKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .RS256 ,
198+ assertionConfig .signingKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .RS256 ,
199199 keypair .getPrivate ());
200200
201201 Config .TDFConfig config = Config .newTDFConfig (
@@ -314,7 +314,7 @@ void testSimpleTDFWithAssertionWithHS256Failure() throws Exception {
314314 assertionConfig1 .statement .format = "base64binary" ;
315315 assertionConfig1 .statement .schema = "text" ;
316316 assertionConfig1 .statement .value = "ICAgIDxlZGoOkVkaD4=" ;
317- assertionConfig1 .assertionKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .HS256 , key );
317+ assertionConfig1 .signingKey = new AssertionConfig .AssertionKey (AssertionConfig .AssertionKeyAlg .HS256 , key );
318318
319319 Config .TDFConfig config = Config .newTDFConfig (
320320 Config .withAutoconfigure (false ),
0 commit comments