Skip to content

Commit 10ea5f9

Browse files
committed
Move to rnpgp
1 parent 29f3500 commit 10ea5f9

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

LICENSE-OCB.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ License for OCB Usage
22
=====================
33

44
This license has been graciously granted by Professor Phillip Rogaway to allow
5-
users of [`rnp`](https://github.com/riboseinc/rnp) to utilize the patented
5+
users of [`rnp`](https://github.com/rnpgp/rnp) to utilize the patented
66
[OCB](http://web.cs.ucdavis.edu/~rogaway/ocb/) blockcipher mode of operation,
77
which simultaneously provides privacy and authenticity.
88

README.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ of NetBSD.
1515

1616
== Status
1717

18-
image:https://travis-ci.org/riboseinc/rnp.svg?branch=master["Travis CI Build Status", link="https://travis-ci.org/riboseinc/rnp"]
19-
image:https://img.shields.io/coverity/scan/12616.svg["Coverity Scan Build Status", link="https://scan.coverity.com/projects/riboseinc-rnp"]
20-
image:https://codecov.io/gh/riboseinc/rnp/branch/master/graph/badge.svg["Code coverage", link="https://codecov.io/gh/riboseinc/rnp"]
18+
image:https://travis-ci.org/rnpgp/rnp.svg?branch=master["Travis CI Build Status", link="https://travis-ci.org/rnpgp/rnp"]
19+
image:https://img.shields.io/coverity/scan/12616.svg["Coverity Scan Build Status", link="https://scan.coverity.com/projects/rnpgp-rnp"]
20+
image:https://codecov.io/gh/rnpgp/rnp/branch/master/graph/badge.svg["Code coverage", link="https://codecov.io/gh/rnpgp/rnp"]
2121

2222
== Supported Platforms
2323

cmake/info.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# this file contains things that are likely to change occasionally
2626
set(PACKAGE_VENDOR "Ribose Inc.")
27-
set(PACKAGE_URL "https://github.com/riboseinc/rnp")
27+
set(PACKAGE_URL "https://github.com/rnpgp/rnp")
2828

2929
set(PACKAGING_EMAIL "Ribose Inc. <packaging@ribose.com>")
3030
set(BUGREPORT_EMAIL "${PACKAGING_EMAIL}")

docs/c-usage.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ you can use the examples below to see how it may be done.
99
.Where to find the examples
1010
====
1111
Find the source code for these examples
12-
under `https://github.com/riboseinc/rnp/blob/master/src/examples/[src/examples]`.
12+
under `https://github.com/rnpgp/rnp/blob/master/src/examples/[src/examples]`.
1313
1414
If you’re building from source, the examples are built together with the RNP library
1515
and are available in `src/examples` directory of your build folder.
@@ -18,7 +18,7 @@ and are available in `src/examples` directory of your build folder.
1818
[TIP]
1919
====
2020
All samples below use APIs exposed via header file
21-
`https://github.com/riboseinc/rnp/blob/master/include/rnp/rnp.h[include/rnp/rnp.h]`,
21+
`https://github.com/rnpgp/rnp/blob/master/include/rnp/rnp.h[include/rnp/rnp.h]`,
2222
check it out for more documentation.
2323
====
2424

@@ -34,7 +34,7 @@ Following sample applications are available:
3434

3535
`verify`:: Shows how to verify signed messages using dynamic keys fetching (sample key provider implementation).
3636

37-
=== https://github.com/riboseinc/rnp/blob/master/src/examples/generate.c[generate.c]
37+
=== https://github.com/rnpgp/rnp/blob/master/src/examples/generate.c[generate.c]
3838

3939
This example is composed from 2 functions:
4040

@@ -49,7 +49,7 @@ You can use `rnp --list-packets pubring.pgp` to check the properties of the gene
4949
search for the keys (in helper functions `ffi_print_key()`/`ffi_export_key()`),
5050
and export them to memory or file in armored format.
5151

52-
=== https://github.com/riboseinc/rnp/blob/master/src/examples/encrypt.c[encrypt.c]
52+
=== https://github.com/rnpgp/rnp/blob/master/src/examples/encrypt.c[encrypt.c]
5353

5454
This code sample first loads public keyring (`pubring.pgp`) (created by the “generate.c” example),
5555
then creates encryption operation structure and configures it with various options
@@ -61,7 +61,7 @@ It is saved to the file `encrypted.asc` in current directory.
6161
You can investigate it via the `rnp --list-packets encrypted.asc` command.
6262
Also, you may want to decrypt saved file via `rnp --keyfile secring.pgp -d encrypted.asc`.
6363

64-
=== https://github.com/riboseinc/rnp/blob/master/src/examples/decrypt.c[decrypt.c]
64+
=== https://github.com/rnpgp/rnp/blob/master/src/examples/decrypt.c[decrypt.c]
6565

6666
This example uses keyrings generated in the “generate.c” sample to decrypt messages
6767
encrypted by the “encrypt.c” sample.
@@ -71,7 +71,7 @@ and implements custom password provider for decryption or key password.
7171

7272
Decrypted message is saved to the memory and then printed to the stdout.
7373

74-
=== https://github.com/riboseinc/rnp/blob/master/src/examples/sign.c[sign.c]
74+
=== https://github.com/rnpgp/rnp/blob/master/src/examples/sign.c[sign.c]
7575

7676
This sample uses keyrings generated in the preceding “generate.c” sample.
7777

@@ -81,7 +81,7 @@ Attached signature is used, i.e. the data is encapsulated into the resulting mes
8181
You can investigate the signed message by issuing `rnp --list-packets signed.asc` command.
8282
To verify message, use `rnp --keyfile pubring.pgp -v signed.asc`.
8383

84-
=== https://github.com/riboseinc/rnp/blob/master/src/examples/verify.c[verify.c]
84+
=== https://github.com/rnpgp/rnp/blob/master/src/examples/verify.c[verify.c]
8585

8686
This example uses keyrings generated in the “generate.c” sample.
8787

docs/develop.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors.
77

88
=== Pull Requests
99

10-
See also: https://github.com/riboseinc/guides/tree/master/code-review[Guides - Code Review]
10+
See also: https://github.com/rnpgp/guides/tree/master/code-review[Guides - Code Review]
1111

1212
Pull Requests should be used for any non-trivial changes. This presents
1313
an opportunity for feedback and allows the CI tests to complete prior to
@@ -31,11 +31,11 @@ Pull Requests should be:
3131
(Updates related to policies, like this section, should be approved by
3232
the project owner)
3333
* Merged by a reviewer via the most appropriate method
34-
(see https://github.com/riboseinc/guides/tree/master/protocol/git[here]).
34+
(see https://github.com/rnpgp/guides/tree/master/protocol/git[here]).
3535

3636
=== Branches
3737

38-
See also: https://github.com/riboseinc/guides/tree/master/protocol/git[Guides - Protocol / Git]
38+
See also: https://github.com/rnpgp/guides/tree/master/protocol/git[Guides - Protocol / Git]
3939

4040
Git branches should be used generously. Most branches should be topic branches,
4141
created for adding a specific feature or fixing a specific bug.
@@ -107,7 +107,7 @@ env GPG_VERSION=beta BUILD_MODE=sanitize ci/local.sh
107107
== Code Coverage
108108

109109
CodeCov is used for assessing our test coverage.
110-
The current coverage can always be viewed here: https://codecov.io/github/riboseinc/rnp/
110+
The current coverage can always be viewed here: https://codecov.io/github/rnpgp/rnp/
111111

112112
== Security / Bug Hunting
113113

@@ -124,9 +124,9 @@ You may wish to perform a clean clone for this, like so:
124124
--
125125
cd /tmp
126126

127-
git clone https://github.com/riboseinc/rnp
127+
git clone https://github.com/rnpgp/rnp
128128
# or
129-
# git clone git@github.com:riboseinc/rnp.git
129+
# git clone git@github.com:rnpgp/rnp.git
130130
cd rnp
131131

132132
# switch to the coverity_scan branch
@@ -145,8 +145,8 @@ general, the `coverity_scan` branch's `.travis.yml` is identical to
145145
`master`'s, but with a build matrix of only one entry.
146146

147147
The results can be accessed on
148-
https://scan.coverity.com/projects/riboseinc-rnp. You will need to
149-
create an account and request access to the riboseinc/rnp project.
148+
https://scan.coverity.com/projects/rnpgp-rnp. You will need to
149+
create an account and request access to the rnpgp/rnp project.
150150

151151
Since the scan results are not updated live, line numbers may no longer
152152
be accurate against the `master` branch, issues may already be resolved,

docs/develop/packaging.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[source,console]
1010
--
11-
curl -LO https://github.com/riboseinc/rnp/archive/v0.9.0.tar.gz
11+
curl -LO https://github.com/rnpgp/rnp/archive/v0.9.0.tar.gz
1212
tar xzf v0.9.0.tar.gz
1313
cd rnp-0.9.0
1414
--
@@ -17,7 +17,7 @@ cd rnp-0.9.0
1717

1818
[source,console]
1919
--
20-
git clone https://github.com/riboseinc/rnp
20+
git clone https://github.com/rnpgp/rnp
2121
cd rnp
2222
git checkout v0.9.0
2323
--
@@ -43,8 +43,8 @@ yum -y install git cmake3 make gcc-c++
4343
yum -y install bzip2-devel zlib-devel json-c12-devel
4444

4545
# botan
46-
rpm --import https://github.com/riboseinc/yum/raw/master/ribose-packages.pub
47-
curl -L https://github.com/riboseinc/yum/raw/master/ribose.repo > /etc/yum.repos.d/ribose.repo
46+
rpm --import https://github.com/rnpgp/yum/raw/master/ribose-packages.pub
47+
curl -L https://github.com/rnpgp/yum/raw/master/ribose.repo > /etc/yum.repos.d/ribose.repo
4848
yum -y install botan2-devel
4949
--
5050

docs/installation.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Binaries that will be installed:
99

1010
[source,console]
1111
----
12-
brew tap riboseinc/rnp
12+
brew tap rnpgp/rnp
1313
brew install rnp
1414
----
1515

1616
== On RHEL and CentOS via YUM
1717

1818
[source,console]
1919
----
20-
rpm --import https://github.com/riboseinc/yum/raw/master/ribose-packages.pub
21-
curl -L https://github.com/riboseinc/yum/raw/master/ribose.repo > /etc/yum.repos.d/ribose.repo
20+
rpm --import https://github.com/rnpgp/yum/raw/master/ribose-packages.pub
21+
curl -L https://github.com/rnpgp/yum/raw/master/ribose.repo > /etc/yum.repos.d/ribose.repo
2222
yum install -y rnp
2323
----
2424

@@ -28,7 +28,7 @@ yum install -y rnp
2828
----
2929
# Clone the repository by version tag (or omit it to get the latest sources)
3030
sudo apt install git
31-
git clone https://github.com/riboseinc/rnp.git -b v0.12.0
31+
git clone https://github.com/rnpgp/rnp.git -b v0.12.0
3232
3333
# Enable access to `testing` packages by editing /etc/apt/sources.list
3434
# deb http://deb.debian.org/debian testing main

src/apps/packet-dumper/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
**redumper** parses input formated as OpenPGP packets ([RFC4880-bis-02](https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-02)) and prints it out in human readable form. **redumper** is based on [rnp](https://github.com/riboseinc/rnp) library (by [Ribose Inc](https://www.ribose.com)).
5+
**redumper** parses input formated as OpenPGP packets ([RFC4880-bis-02](https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-02)) and prints it out in human readable form. **redumper** is based on [rnp](https://github.com/rnpgp/rnp) library (by [Ribose Inc](https://www.ribose.com)).
66

77
## Usage
88

src/tests/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ if (NOT ENABLE_SANITIZERS AND BUILD_SHARED_LIBS)
166166
set(_ruby_rnp_ver "$ENV{RUBY_RNP_VERSION}")
167167
endif()
168168
ExternalProject_Add(ruby-rnp
169-
GIT_REPOSITORY https://github.com/riboseinc/ruby-rnp.git
169+
GIT_REPOSITORY https://github.com/rnpgp/ruby-rnp.git
170170
GIT_TAG "${_ruby_rnp_ver}"
171171
GIT_SHALLOW yes
172172
SOURCE_DIR "${_sourcedir}"

0 commit comments

Comments
 (0)