jedisct1 / libsodium

A modern, portable, easy to use crypto library.
https://libsodium.org
Other
12.15k stars 1.73k forks source link

libsodium.org is down #1013

Closed solidnerd closed 3 years ago

solidnerd commented 3 years ago

Hey @jedisct1, thanks for your project. Currently, it seems that libsodium.org is down.

It's only to inform you if you aware of this let it open until it's fixed.

Have a nice day and I hope you can fix it or let me know now If I can help anywhere.

solidnerd commented 3 years ago

Here is a quick-fix I did for my docker images.

FROM ubuntu:18.04 as builder

RUN apt-get update && \
    apt-get install -y \
      curl \
      git-core \
      sudo \
      openssl \
      build-essential \
      pkg-config \
      cmake \
      libssl-dev \
      libtool \
      autoconf 

ARG LIBSODIUM_VERSION=1.0.18
RUN cd /tmp && \
      curl -sSL https://github.com/jedisct1/libsodium/archive/${LIBSODIUM_VERSION}.tar.gz | tar -xzv && \
       cd /tmp/libsodium-${LIBSODIUM_VERSION} && \
       ./autogen.sh && \
       ./configure --disable-shared && \
       make && \
       make install && \
       rm -rf /tmp/libsodium-${LIBSODIUM_VERSION}
jedisct1 commented 3 years ago

DNS.

It's always DNS :)

jedisct1 commented 3 years ago

By the way:

ARG LIBSODIUM_VERSION=1.0.18

The 1.0.18 point release is quite old. You should rather use stable.

./autogen.sh

This is undocumented and not necessary (and won't work any more).