@@ -56,37 +56,75 @@ describe('encrypt', function() {
56
56
}
57
57
58
58
describe ( 'des-ede3-cbc fails' , function ( ) {
59
- it ( 'should fail encryption when disallowInsecureEncryptionAlgorithm is set' , function ( done ) {
59
+ it ( 'should fail encryption when disallowEncryptionWithInsecureAlgorithm is set' , function ( done ) {
60
60
const options = {
61
61
rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
62
62
pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
63
63
key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
64
- disallowInsecureEncryptionAlgorithm : true ,
65
- encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#aes128 -cbc' ,
64
+ disallowEncryptionWithInsecureAlgorithm : true ,
65
+ encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#tripledes -cbc' ,
66
66
keyEncryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p'
67
67
}
68
- //options.encryptionAlgorithm = 'http://www.w3.org/2001/04/xmlenc#tripledes-cbc',
69
- //options.keyEncryptionAlgorithm = 'http://www.w3.org/2001/04/xmlenc#rsa-1_5';
70
68
xmlenc . encrypt ( 'encrypt me' , options , function ( err , result ) {
71
69
assert ( err ) ;
70
+ assert ( ! result ) ;
72
71
done ( ) ;
73
72
} ) ;
74
73
} ) ;
75
74
76
- it ( 'should fail decryption when disallowInsecureDecryptionAlgorithm is set' , function ( done ) {
75
+ it ( 'should fail decryption when disallowDecryptionWithInsecureAlgorithm is set' , function ( done ) {
77
76
const options = {
78
77
rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
79
78
pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
80
79
key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
81
- encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#aes128 -cbc' ,
80
+ encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#tripledes -cbc' ,
82
81
keyEncryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p'
83
82
}
84
83
xmlenc . encrypt ( 'encrypt me' , options , function ( err , result ) {
85
84
xmlenc . decrypt ( result ,
86
85
{ key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
87
- disallowInsecureDecryptionAlgorithm : true } ,
86
+ disallowDecryptionWithInsecureAlgorithm : true } ,
87
+ function ( err , decrypted ) {
88
+ assert ( err ) ;
89
+ assert ( ! decrypted ) ;
90
+ done ( ) ;
91
+ } ) ;
92
+ } ) ;
93
+ } ) ;
94
+ } ) ;
95
+
96
+ describe ( 'rsa-1.5 fails' , function ( ) {
97
+ it ( 'should fail encryption when disallowEncryptionWithInsecureAlgorithm is set' , function ( done ) {
98
+ const options = {
99
+ rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
100
+ pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
101
+ key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
102
+ disallowEncryptionWithInsecureAlgorithm : true ,
103
+ encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#aes256-cbc' ,
104
+ keyEncryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#rsa-1_5'
105
+ }
106
+ xmlenc . encrypt ( 'encrypt me' , options , function ( err , result ) {
107
+ assert ( err ) ;
108
+ assert ( ! result ) ;
109
+ done ( ) ;
110
+ } ) ;
111
+ } ) ;
112
+
113
+ it ( 'should fail decryption when disallowDecryptionWithInsecureAlgorithm is set' , function ( done ) {
114
+ const options = {
115
+ rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
116
+ pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
117
+ key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
118
+ encryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#aes256-cbc' ,
119
+ keyEncryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#rsa-1_5'
120
+ }
121
+ xmlenc . encrypt ( 'encrypt me' , options , function ( err , result ) {
122
+ xmlenc . decrypt ( result ,
123
+ { key : fs . readFileSync ( __dirname + '/test-auth0.key' ) ,
124
+ disallowDecryptionWithInsecureAlgorithm : true } ,
88
125
function ( err , decrypted ) {
89
126
assert ( err ) ;
127
+ assert ( ! decrypted ) ;
90
128
done ( ) ;
91
129
} ) ;
92
130
} ) ;
@@ -133,12 +171,12 @@ describe('encrypt', function() {
133
171
} ) ;
134
172
} ) ;
135
173
136
- it ( 'should fail encrypt when disallowInsecureDecryptionAlgorithm is set' , function ( done ) {
174
+ it ( 'should fail encrypt when disallowEncryptionWithInsecureAlgorithm is set' , function ( done ) {
137
175
var options = {
138
176
rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
139
177
pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
140
178
keyEncryptionAlgorithm : 'http://www.w3.org/2001/04/xmlenc#rsa-1_5' ,
141
- disallowInsecureEncryptionAlgorithm : true
179
+ disallowEncryptionWithInsecureAlgorithm : true
142
180
} ;
143
181
144
182
var plaintext = 'The quick brown fox jumps over the lazy dog' ;
0 commit comments