diff options
author | Björn Gustavsson <[email protected]> | 2013-04-15 10:23:17 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-04-17 08:59:31 +0200 |
commit | 05a646a0844e8cf25045bc9388094c799c21538d (patch) | |
tree | 66e5cdd13e8b6dc8ba648927c84a576e1b659eff /lib/public_key | |
parent | 656b37f1b6fbc3611f5e0f8b8c0e4f61bef9092b (diff) | |
download | otp-05a646a0844e8cf25045bc9388094c799c21538d.tar.gz otp-05a646a0844e8cf25045bc9388094c799c21538d.tar.bz2 otp-05a646a0844e8cf25045bc9388094c799c21538d.zip |
Encode Erlang source files with non-ascii characters in UTF-8
To ensure that 'master' compiles when we merge 'maint' to it,
regardless of which encoding is default in 'master', all source
files with non-ascii characters *must* have the encoding specified.
Diffstat (limited to 'lib/public_key')
-rw-r--r-- | lib/public_key/test/erl_make_certs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public_key/test/erl_make_certs.erl b/lib/public_key/test/erl_make_certs.erl index 95e288cd71..897cf2f350 100644 --- a/lib/public_key/test/erl_make_certs.erl +++ b/lib/public_key/test/erl_make_certs.erl @@ -354,13 +354,13 @@ gen_dsa2(LSize, NSize) -> X0 = prime(LSize), P0 = prime((LSize div 2) +1), - %% Choose L-bit prime modulus P such that p–1 is a multiple of q. + %% Choose L-bit prime modulus P such that p-1 is a multiple of q. case dsa_search(X0 div (2*Q*P0), P0, Q, 1000) of error -> gen_dsa2(LSize, NSize); P -> G = crypto:mod_exp(2, (P-1) div Q, P), % Choose G a number whose multiplicative order modulo p is q. - %% such that This may be done by setting g = h^(p–1)/q mod p, commonly h=2 is used. + %% such that This may be done by setting g = h^(p-1)/q mod p, commonly h=2 is used. X = prime(20), %% Choose x by some random method, where 0 < x < q. Y = crypto:mod_exp(G, X, P), %% Calculate y = g^x mod p. |