Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | #!/usr/local/bin/perl |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | |
michael@0 | 6 | use strict; |
michael@0 | 7 | require "genverifier.pm"; |
michael@0 | 8 | use genverifier; |
michael@0 | 9 | |
michael@0 | 10 | |
michael@0 | 11 | my(@iso2022kr_cls); |
michael@0 | 12 | my(@iso2022kr_st); |
michael@0 | 13 | my($iso2022kr_ver); |
michael@0 | 14 | |
michael@0 | 15 | |
michael@0 | 16 | # |
michael@0 | 17 | # |
michael@0 | 18 | # ESC - 1 |
michael@0 | 19 | # > 0x80 - 2 |
michael@0 | 20 | # $ - 3 |
michael@0 | 21 | # ) - 4 |
michael@0 | 22 | # C - 5 |
michael@0 | 23 | # |
michael@0 | 24 | @iso2022kr_cls = ( |
michael@0 | 25 | [ 0x01 , 0x1a , 0 ], |
michael@0 | 26 | [ 0x24 , 0x24 , 3 ], |
michael@0 | 27 | [ 0x29 , 0x29 , 4 ], |
michael@0 | 28 | [ 0x43 , 0x43 , 5 ], |
michael@0 | 29 | [ 0x1c , 0x7f , 0 ], |
michael@0 | 30 | [ 0x1b , 0x1b , 1 ], |
michael@0 | 31 | [ 0x00 , 0x00 , 2 ], |
michael@0 | 32 | [ 0x80 , 0xff , 2 ] |
michael@0 | 33 | ); |
michael@0 | 34 | |
michael@0 | 35 | |
michael@0 | 36 | # |
michael@0 | 37 | # ESC$)C |
michael@0 | 38 | # |
michael@0 | 39 | package genverifier; |
michael@0 | 40 | @iso2022kr_st = ( |
michael@0 | 41 | # 0 1 2 3 4 5 |
michael@0 | 42 | 0, 3, 1, 0, 0, 0, # Start State - 0 |
michael@0 | 43 | 1, 1, 1, 1, 1, 1, # Error State - 1 |
michael@0 | 44 | 2, 2, 2, 2, 2, 2, # ItsMe State - 2 |
michael@0 | 45 | 1, 1, 1, 4, 1, 1, # state 3 - got ESC |
michael@0 | 46 | 1, 1, 1, 1, 5, 1, # state 4 - got ESC $ |
michael@0 | 47 | 1, 1, 1, 1, 1, 2, # state 5 - got ESC $ ) |
michael@0 | 48 | ); |
michael@0 | 49 | |
michael@0 | 50 | $iso2022kr_ver = genverifier::GenVerifier("ISO2022KR", "ISO-2022-KR", |
michael@0 | 51 | \@iso2022kr_cls, 6, \@iso2022kr_st); |
michael@0 | 52 | print $iso2022kr_ver; |
michael@0 | 53 | |
michael@0 | 54 | |
michael@0 | 55 |