Changeset 18
- Timestamp:
- 10/31/04 00:43:15 (4 years ago)
- Files:
-
- trunk/lib/pgp/armor.rb (modified) (1 diff)
- trunk/lib/pgp/compressionalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/hashalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/hexdump.rb (modified) (1 diff)
- trunk/lib/pgp/indentdumpport.rb (modified) (1 diff)
- trunk/lib/pgp/mpi.rb (modified) (1 diff)
- trunk/lib/pgp/packet.rb (modified) (1 diff)
- trunk/lib/pgp/packet/compresseddata.rb (modified) (1 diff)
- trunk/lib/pgp/packet/dsakeysupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/elgamalkeysupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/key.rb (modified) (1 diff)
- trunk/lib/pgp/packet/literaldata.rb (modified) (1 diff)
- trunk/lib/pgp/packet/marker.rb (modified) (1 diff)
- trunk/lib/pgp/packet/packet.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickey.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeydsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeyelgamal.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeyencryptedsessionkey.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeyencryptedsessionkeyrsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeyrsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publickeysupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publicsubkey.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publicsubkeydsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publicsubkeyelgamal.rb (modified) (1 diff)
- trunk/lib/pgp/packet/publicsubkeyrsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/rsakeysupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/s2ksupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretkey.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretkeydsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretkeyelgamal.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretkeyrsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretkeysupport.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretsubkey.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretsubkeydsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretsubkeyelgamal.rb (modified) (1 diff)
- trunk/lib/pgp/packet/secretsubkeyrsa.rb (modified) (1 diff)
- trunk/lib/pgp/packet/signature.rb (modified) (1 diff)
- trunk/lib/pgp/packet/signaturev3.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/creationtime.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/expirationtime.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/features.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/internal.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/issuerkeyid.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/keyexpirationtime.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/keyflags.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/keyserverpreferences.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/packet.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/preferredcompressionalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/preferredhashalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/preferredskeyalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/primaryuserid.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/reasonforrevocation.rb (modified) (1 diff)
- trunk/lib/pgp/packet/sigsubpacket/revocable.rb (modified) (1 diff)
- trunk/lib/pgp/packet/support.rb (modified) (1 diff)
- trunk/lib/pgp/packet/symencryptedintegrityprotecteddata.rb (modified) (1 diff)
- trunk/lib/pgp/packet/trust.rb (modified) (1 diff)
- trunk/lib/pgp/packet/userattribute.rb (modified) (1 diff)
- trunk/lib/pgp/packet/userattrsubpacket.rb (modified) (1 diff)
- trunk/lib/pgp/packet/userattrsubpacket/image.rb (modified) (1 diff)
- trunk/lib/pgp/packet/userattrsubpacket/packet.rb (modified) (1 diff)
- trunk/lib/pgp/packet/userid.rb (modified) (1 diff)
- trunk/lib/pgp/pkeyalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/port.rb (modified) (1 diff)
- trunk/lib/pgp/s2kspecifier.rb (modified) (1 diff)
- trunk/lib/pgp/skeyalgorithm.rb (modified) (1 diff)
- trunk/lib/pgp/util.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/pgp/armor.rb
r17 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/util' 2 17 trunk/lib/pgp/compressionalgorithm.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 module PGP 2 17 trunk/lib/pgp/hashalgorithm.rb
r16 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'digest/md5' 2 17 require 'digest/sha1' trunk/lib/pgp/hexdump.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 module PGP 2 17 trunk/lib/pgp/indentdumpport.rb
r15 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 module PGP 2 17 trunk/lib/pgp/mpi.rb
r17 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'stringio' 2 17 trunk/lib/pgp/packet.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 trunk/lib/pgp/packet/compresseddata.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 require 'pgp/compressionalgorithm' trunk/lib/pgp/packet/dsakeysupport.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/mpi' 2 17 require 'pgp/packet/support' trunk/lib/pgp/packet/elgamalkeysupport.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/mpi' 2 17 require 'pgp/packet/support' trunk/lib/pgp/packet/key.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 trunk/lib/pgp/packet/literaldata.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 trunk/lib/pgp/packet/marker.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 trunk/lib/pgp/packet/packet.rb
r13 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'stringio' 2 17 require 'pgp/port' trunk/lib/pgp/packet/publickey.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/key' 2 17 require 'pgp/packet/publickeysupport' trunk/lib/pgp/packet/publickeydsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publickey' 2 17 require 'pgp/packet/dsakeysupport' trunk/lib/pgp/packet/publickeyelgamal.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publickey' 2 17 require 'pgp/packet/elgamalkeysupport' trunk/lib/pgp/packet/publickeyencryptedsessionkey.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 require 'pgp/pkeyalgorithm' trunk/lib/pgp/packet/publickeyencryptedsessionkeyrsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publickeyencryptedsessionkey' 2 17 require 'pgp/packet/rsakeysupport' trunk/lib/pgp/packet/publickeyrsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publickey' 2 17 require 'pgp/packet/rsakeysupport' trunk/lib/pgp/packet/publickeysupport.rb
r12 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/pkeyalgorithm' 2 17 trunk/lib/pgp/packet/publicsubkey.rb
r17 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/key' 2 17 require 'pgp/packet/publickeysupport' trunk/lib/pgp/packet/publicsubkeydsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publicsubkey' 2 17 require 'pgp/packet/dsakeysupport' trunk/lib/pgp/packet/publicsubkeyelgamal.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publicsubkey' 2 17 require 'pgp/packet/elgamalkeysupport' trunk/lib/pgp/packet/publicsubkeyrsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/publicsubkey' 2 17 require 'pgp/packet/rsakeysupport' trunk/lib/pgp/packet/rsakeysupport.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/mpi' 2 17 require 'pgp/packet/support' trunk/lib/pgp/packet/s2ksupport.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 module PGP 2 17 module Packet trunk/lib/pgp/packet/secretkey.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/key' 2 17 require 'pgp/packet/secretkeysupport' trunk/lib/pgp/packet/secretkeydsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretkey' 2 17 require 'pgp/packet/dsakeysupport' trunk/lib/pgp/packet/secretkeyelgamal.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretkey' 2 17 require 'pgp/packet/elgamalkeysupport' trunk/lib/pgp/packet/secretkeyrsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretkey' 2 17 require 'pgp/packet/rsakeysupport' trunk/lib/pgp/packet/secretkeysupport.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/pkeyalgorithm' 2 17 require 'pgp/s2kspecifier' trunk/lib/pgp/packet/secretsubkey.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/key' 2 17 require 'pgp/packet/secretkeysupport' trunk/lib/pgp/packet/secretsubkeydsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretsubkey' 2 17 require 'pgp/packet/dsakeysupport' trunk/lib/pgp/packet/secretsubkeyelgamal.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretsubkey' 2 17 require 'pgp/packet/elgamalkeysupport' trunk/lib/pgp/packet/secretsubkeyrsa.rb
r2 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/secretsubkey' 2 17 require 'pgp/packet/rsakeysupport' trunk/lib/pgp/packet/signature.rb
r14 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 require 'pgp/pkeyalgorithm' trunk/lib/pgp/packet/signaturev3.rb
r14 r18 1 # Copyright 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 15 1 16 require 'pgp/packet/packet' 2 17 require 'pgp/pkeyalgorithm' trunk/lib/pgp/packet/sigsubpacket.rb
r2