Remove file

db4
Slava Pestov 2008-04-30 16:12:08 -05:00
parent 7584e02805
commit 77caac1401
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
USING: help.markup help.syntax kernel math sequences quotations
math.private ;
IN: crypto.common
HELP: hex-string
{ $values { "seq" "a sequence" } { "str" "a string" } }
{ $description "Converts a sequence of values from 0-255 to a string of hex numbers from 0-ff." }
{ $examples
{ $example "USING: crypto.common io ;" "B{ 1 2 3 4 } hex-string print" "01020304" }
}
{ $notes "Numbers are zero-padded on the left." } ;