src/java.base/share/classes/sun/security/util/math/SmallValue.java
changeset 53563 a4b7ea85d668
parent 50052 d213d70182a9
equal deleted inserted replaced
53559:1ae0b76bb5df 53563:a4b7ea85d668
     1 /*
     1 /*
     2  * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    26 package sun.security.util.math;
    26 package sun.security.util.math;
    27 
    27 
    28 /**
    28 /**
    29  * A "small" value that can be used with the field arithmetic library. This
    29  * A "small" value that can be used with the field arithmetic library. This
    30  * interface enables optimizations based on the fact that certain values are
    30  * interface enables optimizations based on the fact that certain values are
    31  * known to be small, where the definition of small is specific to the the
    31  * known to be small, where the definition of small is specific to the
    32  * arithmetic implementation.
    32  * arithmetic implementation.
    33  */
    33  */
    34 
    34 
    35 public interface SmallValue {
    35 public interface SmallValue {
    36 }
    36 }