File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,23 +57,23 @@ JsSIP.DigestAuthentication.prototype.authenticate = function(password) {
57
57
}
58
58
59
59
// HA1 = MD5(A1) = MD5(username:realm:password)
60
- ha1 = JsSIP . Utils . MD5 ( this . username + ":" + this . realm + ":" + password ) ;
60
+ ha1 = JsSIP . Utils . calculateMD5 ( this . username + ":" + this . realm + ":" + password ) ;
61
61
62
62
if ( this . qop === 'auth' || this . qop === null ) {
63
63
// HA2 = MD5(A2) = MD5(method:digestURI)
64
- ha2 = JsSIP . Utils . MD5 ( this . method + ":" + this . uri ) ;
64
+ ha2 = JsSIP . Utils . calculateMD5 ( this . method + ":" + this . uri ) ;
65
65
66
66
} else if ( this . qop === 'auth-int' ) {
67
67
// HA2 = MD5(A2) = MD5(method:digestURI:MD5(entityBody))
68
- ha2 = JsSIP . Utils . MD5 ( this . method + ":" + this . uri + ":" + JsSIP . Utils . MD5 ( this . body ? this . body : "" ) ) ;
68
+ ha2 = JsSIP . Utils . calculateMD5 ( this . method + ":" + this . uri + ":" + JsSIP . Utils . calculateMD5 ( this . body ? this . body : "" ) ) ;
69
69
}
70
70
71
71
if ( this . qop === 'auth' || this . qop === 'auth-int' ) {
72
72
// response = MD5(HA1:nonce:nonceCount:credentialsNonce:qop:HA2)
73
- this . response = JsSIP . Utils . MD5 ( ha1 + ":" + this . nonce + ":" + this . decimalToHex ( this . nc ) + ":" + this . cnonce + ":" + this . qop + ":" + ha2 ) ;
73
+ this . response = JsSIP . Utils . calculateMD5 ( ha1 + ":" + this . nonce + ":" + this . decimalToHex ( this . nc ) + ":" + this . cnonce + ":" + this . qop + ":" + ha2 ) ;
74
74
} else {
75
75
// response = MD5(HA1:nonce:HA2)
76
- this . response = JsSIP . Utils . MD5 ( ha1 + ":" + this . nonce + ":" + ha2 ) ;
76
+ this . response = JsSIP . Utils . calculateMD5 ( ha1 + ":" + this . nonce + ":" + ha2 ) ;
77
77
}
78
78
79
79
return this . toString ( ) ;
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ JsSIP.Utils= {
185
185
} ,
186
186
187
187
// MD5 (Message-Digest Algorithm) http://www.webtoolkit.info
188
- MD5 : function ( string ) {
188
+ calculateMD5 : function ( string ) {
189
189
function RotateLeft ( lValue , iShiftBits ) {
190
190
return ( lValue << iShiftBits ) | ( lValue >>> ( 32 - iShiftBits ) ) ;
191
191
}
You can’t perform that action at this time.
0 commit comments