diff --git a/bitaddress.org.html b/bitaddress.org.html index f6bb0d3..af178f5 100644 --- a/bitaddress.org.html +++ b/bitaddress.org.html @@ -3754,6 +3754,11 @@ return this.pubKeyHex = Crypto.util.bytesToHex(this.getPub()).toString().toUpperCase(); }; + ECKey.prototype.getPubKeyHexCompressed = function () { + if (this.pubKeyHexCompressed) return this.pubKeyHexCompressed; + return this.pubKeyHexCompressed = Crypto.util.bytesToHex(this.getPubCompressed()).toString().toUpperCase(); + }; + ECKey.prototype.getPubCompressed = function () { if (this.pubCompressed) return this.pubCompressed; return this.pubCompressed = ecparams.getG().multiply(this.priv).getEncoded(1); @@ -3940,11 +3945,14 @@ .pubkeyhex { word-wrap: break-word; } .faqs ol { padding: 0 0 0 25px; } .faqs li { padding: 3px 0; } - #main { font-family: Arial; position: relative; text-align: center; margin: 0px auto; width: 795px; } + #main { font-family: Arial; position: relative; text-align: center; margin: 0px auto; width: 945px;/*795px;*/ } #logo { width: 578px; height: 80px; } #generate { font-family: Courier New; height: 158px; text-align: left; position: relative; padding: 5px; border: 2px solid green; } #generate span { padding: 5px 5px 0 5px; } #menu { visibility: hidden; } + #culturemenu { text-align: right; padding: 0 20px; } + #culturemenu span { padding: 3px; } + #culturemenu .selected { text-decoration: none; color: #000000; } #paperarea { min-height: 120px; display: none; } #paperarea .keyarea { border: 2px solid green; border-top: 0; } @@ -3998,7 +4006,7 @@ #vanitystep1label { padding-left: 5px; } #vanitystep2area { border-top: 2px solid green; display: block; padding: 15px; } #vanitystep2inputs { padding: 0 15px 10px 15px; } - #vanityadd { margin-top: 5px; } + #vanitycalc { margin-top: 5px; } .bulkquestion { padding: 10px 15px; text-align: left; cursor: pointer; } .bulkquestion:hover, .expandable:hover { color: #77777A; } @@ -4043,12 +4051,12 @@ #bulklimit { width: 45px; } .footer { font-family: Arial; font-size: 90%; clear: both; width: 700px; padding: 10px 0 10px 0; margin: 50px auto auto auto; } - .footer div span { padding: 10px; } + .footer div span.item { padding: 10px; } .footer .authorbtc { float: left; width: 470px; } - .footer .authorbtc span { text-align: left; display: block; padding: 0 20px; } + .footer .authorbtc span.item { text-align: left; display: block; padding: 0 20px; } .footer .authorbtc div { position: relative; z-index: 100; } .footer .authorpgp { position: relative; } - .footer .authorpgp span { text-align: right; display: block; padding: 0 20px; } + .footer .authorpgp span.item { text-align: right; display: block; padding: 0 20px; } .footer .copyright { font-size: 80%; clear: both; padding: 5px 0; } .footer .copyright span { padding: 10px 2px; } } @@ -4069,6 +4077,10 @@