Index: openacs-4/packages/acs-tcl/tcl/security-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/security-procs.tcl,v diff -u -r1.78.2.2 -r1.78.2.3 --- openacs-4/packages/acs-tcl/tcl/security-procs.tcl 20 Sep 2015 09:59:56 -0000 1.78.2.2 +++ openacs-4/packages/acs-tcl/tcl/security-procs.tcl 14 Oct 2015 09:26:41 -0000 1.78.2.3 @@ -986,7 +986,7 @@ lassign $cookie_value value signature ns_log Debug "ad_get_signed_cookie: Got signed cookie $name with value $value, signature $signature." - if { [ad_verify_signature $value $signature] } { + if { [ad_verify_signature -secret $secret $value $signature] } { ns_log Debug "ad_get_signed_cookie: Verification of cookie $name OK" return $value } @@ -1016,7 +1016,7 @@ } lassign $cookie_value value signature - set expr_time [ad_verify_signature_with_expr $value $signature] + set expr_time [ad_verify_signature_with_expr -secret $secret $value $signature] ns_log Debug "Security: Done calling get_cookie $cookie_value for $name; received $expr_time expiration, getting $value and $signature."