Cadastro de Pessoas Físicas

Cadastro de Pessoas Físicas

The CPF (Cadastro de Pessoas Físicas -- Natural Persons Register) is a number attributed by the Brazilian revenue agency (Receita Federal -- Federal Revenue) to both Brazilians and resident aliens who pay taxes or take part, direct or indirectly, in activities that provide revenue for any of the dozens of different types of taxes existing in Brazil. By means of this universal number the Federal Revenue computers can estimate the income tax that is due, thus directing fiscalisation.

Each individual has a number (which is the actual CPF), formerly printed on a paper document (see above) but now on a blue plastic card (credit-card-sized). Since the 70s the use of this number has been extended to a series of other purposes, making it one of the four most important documents for anyone living in Brazil (the others are the Identity Card, the Voting Registration and, for men, the Military Service Certificate). Without a CPF it is almost impossible to lead a normal life in Brazil.

The number printed on the document is an eleven-digit figure, of which the two last numbers are the result of an arithmetic operation on the nine previous ones (which means that any typing mistake will result in an invalid number). In the beginning the number used to be temporary but, as too many people used different numbers to evade tax, it is now permanent (though cancelled after some time after the person's death). To stop people from obtaining more than one registration, the registry checks for birthdate, mother's name and Voting Registration number. Because of the permanent character of the registry, one does not actually need to have the card (many people actually don't), but only to remember the number.

The possession of the CPF is not required (though it is absolutely a prerequisite for a series of operations like opening bank accounts, to get or renew a drivers license, buying or selling real estate, taking loans, applying for jobs (especially public ones), getting a passport or credit cards.

Though permanent, the validity of the CPF is not unchallenged: it will be cancelled after two years without paying income tax. To prevent cancellation people who don't pay income tax (most of the population) will send "exempt reports" to the Federal Revenue.

The Federal Revenue has recently issued the "e-CPF", an electronic document that can be used as a nationwide, public-provided cryptographed signature key.

Validation

Pseudocode for CPF validation algorithm (modulus 11):

function ValidateCPF(cpf: "int" [11] ) var v: "int" [2] //"Note: compute 1st verification digit." v [1] := 10×cpf [1] + 9×cpf [2] + 8×cpf [3] v [1] += 7×cpf [4] + 6×cpf [5] + 5×cpf [6] v [1] += 4×cpf [7] + 3×cpf [8] + 2×cpf [9] v [1] := 11 - v [1] mod 11 v [1] := 0 if v [1] ≥ 10 //"Note: compute 2nd verification digit." v [2] := 11×cpf [1] + 10×cpf [2] + 9×cpf [3] v [2] += 8×cpf [4] + 7×cpf [5] + 6×cpf [6] v [2] += 5×cpf [7] + 4×cpf [8] + 3×cpf [9] v [2] += 2×v [1] v [2] := 11 - v [2] mod 11 v [2] := 0 if v [2] ≥ 10 //"Note: True if verification digits are as expected." return v [1] = cpf [10] and v [2] = cpf [11]

See also

* Registro Geral (Brazilian national ID)
* Social Security number (a similar number in the USA)
* National Insurance number (a similar number in the United Kingdom)
* Social Insurance Number (a similar number in Canada)
* INSEE code (a similar number in France)
* Tax File Number (a similar number in Australia)
* CNPJ - National Registry of Corporations
* National identification number
* Identity Card

External links

* [http://www.receita.fazenda.gov.br/Aplicacoes/ATCTA/CPF/ Receita Federal - Cadastro de Pessoas Físicas - CPF] - Federal Revenue site, CPF issuing page.


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • National identification number — A national identification number, national identity number, or national insurance number is used by the governments of many countries as a means of tracking their citizens, permanent residents, and temporary residents for the purposes of work,… …   Wikipedia

  • Social Security number — In the United States, a Social Security number (SSN) is a 9 digit number issued to citizens, permanent residents, and temporary (working) residents under section 205(c)(2) of the Social Security Act, codified as uscsub|42|405|c|2. The number is… …   Wikipedia

  • INSEE code — The INSEE code is a numerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities, including communes, départements. They are also used as national identification numbers… …   Wikipedia

  • CPF — may refer to: *Cadastro de Pessoas Físicas, an identity number for individuals issued by the Brazilian government *Canadian Patrol Frigate, such as the Halifax class frigate *Central Provident Fund, the mandatory saving and social security plan… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”