GithubHelp home page GithubHelp logo

Comments (3)

rtyley avatar rtyley commented on June 25, 2024

Good catch @michaelmaguire - yup, the url used in the copyright statements looks to have got incorrectly altered by the become-spongy.sh script:

Copyright (c) 2000-2012 The Legion Of The Bouncy Castle (http://www.spongycastle.org)

Obviously that should be http://www.bouncycastle.org/ - I'll correct it with the next release (though I don't know when that will be!),

Thanks for spotting it,
Roberto

from spongycastle-old.

fnorkle avatar fnorkle commented on June 25, 2024

A simple fix is to patch the script to do the sed replace using "org.bouncycastle" into "org.spongycastle" (instead of only "bouncycastle").

Or alternatively, I'm using the following ant script in my project:

<!-- change provider name and package name in bcprov sources -->
<delete dir="${project.dir}/Sources/java" includeemptydirs="true" failonerror="false" />
<copy todir="${project.dir}/sources/java" verbose="true" failonerror="true" overwrite="false" >
    <fileset dir="${project.dir}/dependencies/osi.bouncycastle.bcprov.src" includes="**/*.java" excludes="**/test/**,**/examples/**"/>
    <fileset dir="${project.dir}/dependencies/osi.bouncycastle.bcprov.src" includes="**/*.html,**/*.properties"/>
    <mapper type="regexp" from="(bouncycastle)(.*)" to="org/spongycastle\2"/>
    <filterchain>
        <tokenfilter>
            <replaceregex pattern="org\.bouncycastle" replace="org.spongycastle" flags="g"/>
            <replaceregex pattern="\&quot;BC\&quot;" replace="\&quot;SC\&quot;" flags="g"/>
        </tokenfilter>
    </filterchain>
</copy>

from spongycastle-old.

rtyley avatar rtyley commented on June 25, 2024

This has been fixed as of v1.50, as you can see here:

https://github.com/rtyley/spongycastle/blob/d3cab/core/src/main/java/org/spongycastle/LICENSE.java

from spongycastle-old.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.